-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
feat(fuzzer): Allow bucket columns to overlap as sort columns in writer fuzzer #12007
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for meta-velox canceled.
|
@HeidiHan0000 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
4 similar comments
@HeidiHan0000 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@HeidiHan0000 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@HeidiHan0000 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@HeidiHan0000 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
…er fuzzer (#12007) Summary: Allow bucket columns to overlap as sort columns by using some of the bucket columns as sort columns and generating the rest of the sort columns. Differential Revision: D67775105 Pulled By: HeidiHan0000
e19c9d7
to
fe7d648
Compare
This pull request was exported from Phabricator. Differential Revision: D67775105 |
auto [sortColumns, offset] = | ||
generateSortColumns(3, names, types, bucketColumns); | ||
sortColumnOffset -= offset; |
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.
A more straightforward way I can think of is keep the original code which generates the independentSortColumns, and pick some columns from bucket columns, then merge those two together.
Is it doable?
Allow bucket columns to overlap as sort columns by using some of the bucket columns as sort columns and generating the rest of the sort columns.