-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #716 ---- I found this as I was looking through the issues earlier today. One concern with this (and limit pushdowns in general,) is that we could be _under_ reporting data in these cases: Imagine we only partially push down a predicate but we completly push down the limit. If we get `n` rows back from the data source, but then further filter it down, then we've returned fewer than the target number of rows. Right? This isn't new, and I'm not sure we _shouldn't_ do this because of that, and also I could imagine datafusion passing in different limits than what the user specified. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Vaibhav Rabber <[email protected]>
- Loading branch information
1 parent
b23ad2d
commit f1b558a
Showing
4 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters