-
Notifications
You must be signed in to change notification settings - Fork 130
Propegate output_ordering to scan #4909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
0660004 to
8ed78b5
Compare
| │ └── Root | ||
| └── pattern: Literal(value: "test%", dtype: utf8) | ||
| "#); | ||
| insta::allow_duplicates! { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes cargo test -p vortex-datafusion work
| ┌───────────────────────────┐ | ||
| │ SortPreservingMergeExec │ | ||
| │ -------------------- │ | ||
| │ c1 ASC NULLS LASTlimit: │ | ||
| │ 3 │ | ||
| └─────────────┬─────────────┘ | ||
| ┌─────────────┴─────────────┐ | ||
| │ DataSourceExec │ | ||
| │ -------------------- │ | ||
| │ files: 3 │ | ||
| │ format: vortex │ | ||
| └───────────────────────────┘ | ||
| "); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shows plan is correct - it has no explicit SortExec node.
8ed78b5 to
df5a00b
Compare
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
df5a00b to
3f8b239
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Fix a bug where datafusion scans the provide
output_orderingassume the stream itself is provided in-order, and we explicitly don't guarantee the stream we return from files is in-order.