-
Notifications
You must be signed in to change notification settings - Fork 127
feat[layout]: list-of-struct nested projection #6012
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
Closed
godnight10061
wants to merge
17
commits into
vortex-data:develop
from
godnight10061:fix-list-of-struct-projection
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
6dd98e5
Add fork PR CI workflow
godnight10061 bb8ae25
Fix nested projection for list-of-struct columns
godnight10061 76d6958
Add unit regression for list-of-struct get_item
godnight10061 54489f3
Fix lints in list layout and projections
godnight10061 7b7a679
Refactor list projection internals
godnight10061 52d850e
Improve ListReader split planning for FixedSizeList
godnight10061 083f674
Use get_item_list for list-of-struct projection
godnight10061 f83bc28
Address list-of-struct projection review
godnight10061 db2d278
Fix scan dtype for list-of-struct projection
godnight10061 e58cf9a
Add unit regression for list-of-struct scan dtype
godnight10061 875645c
Remove redundant GetItemList scope access special-case
godnight10061 28db7d4
Use unmasked_field_by_name in GetItemList
godnight10061 7bf74f8
Refactor ScanBuilder projection prep
godnight10061 fdd2b4b
Refactor GetItemList field projection
godnight10061 0d79be1
Improve list split planning via offsets
godnight10061 8222856
Simplify list offsets split mapping
godnight10061 3690d75
Fix list projection after VTable change
godnight10061 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| name: CI (fork) | ||
|
|
||
| on: | ||
| pull_request: { } | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| env: | ||
| CARGO_TERM_COLOR: auto | ||
|
|
||
| jobs: | ||
| rust-fmt: | ||
| name: Rust (fmt) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 60 | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: ./.github/actions/setup-rust | ||
| with: | ||
| toolchain: nightly | ||
| repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Rust format | ||
| run: cargo +nightly fmt --all --check | ||
|
|
||
| rust-clippy: | ||
| name: Rust (clippy) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 120 | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: ./.github/actions/setup-rust | ||
| with: | ||
| repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Rust clippy (workspace) | ||
| run: > | ||
| cargo clippy --locked --workspace --all-features --all-targets | ||
| --exclude vortex-bench | ||
| --exclude vortex-python | ||
| --exclude vortex-duckdb | ||
| --exclude vortex-fuzz | ||
| --exclude duckdb-bench | ||
| --exclude lance-bench | ||
| --exclude datafusion-bench | ||
| --exclude random-access-bench | ||
| --exclude compress-bench | ||
| -- -D warnings | ||
|
|
||
| rust-tests: | ||
| name: Rust (tests) | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 240 | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: ./.github/actions/setup-rust | ||
| with: | ||
| repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
| - uses: taiki-e/install-action@v2 | ||
| with: | ||
| tool: nextest | ||
| - name: Cargo nextest | ||
| run: > | ||
| cargo nextest run --locked --workspace --all-features --no-fail-fast | ||
| --exclude vortex-cuda | ||
| --exclude vortex-bench | ||
| --exclude vortex-python | ||
| --exclude vortex-duckdb | ||
| --exclude vortex-fuzz | ||
| --exclude duckdb-bench | ||
| --exclude lance-bench | ||
| --exclude datafusion-bench | ||
| --exclude random-access-bench | ||
| --exclude compress-bench |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
do we need these changes?