Skip to content
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

refactor!: update operations to use delta scan #1639

Merged
merged 29 commits into from
Oct 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e713ab3
:WIP: Delta scan changes
Blajda Aug 6, 2023
db66761
reintroduce projection for find files
Blajda Aug 6, 2023
2c384d9
Change path column to dict encoding
Blajda Aug 9, 2023
df1d2ee
impl serde for scan
Blajda Aug 12, 2023
40403bd
merge with main
Blajda Sep 12, 2023
0c39276
refactor merge to use delta scan
Blajda Sep 12, 2023
27178ab
Merge remote-tracking branch 'origin/main' into scan-refactor
Blajda Sep 17, 2023
fd41ac8
change schema to use
Blajda Oct 1, 2023
01e7ee2
resolve merge conflicts with main
Blajda Oct 1, 2023
254e560
resolve merge conflicts with main
Blajda Oct 1, 2023
5855bb0
fix integration tests
Blajda Oct 1, 2023
9ba6258
fix integration tests
Blajda Oct 1, 2023
6b5d040
fix merge operation usage with table alias
Blajda Oct 6, 2023
b2ae59a
clean up
Blajda Oct 7, 2023
e3bf7cd
Merge remote-tracking branch 'origin/main' into merge-predicate-parse…
Blajda Oct 7, 2023
9354c4c
update docs
Blajda Oct 7, 2023
c3eb0cb
allow using target alias for merge op target
Blajda Oct 7, 2023
b80cde0
Merge remote-tracking branch 'origin/main' into merge-predicate-parse…
Blajda Oct 7, 2023
49b7857
additional alias test
Blajda Oct 7, 2023
ce1d02c
merge with main
Blajda Oct 8, 2023
662af12
refactor config builder + new table provider
Blajda Oct 9, 2023
df2e431
Merge remote-tracking branch 'origin/main' into merge-predicate-parse…
Blajda Oct 9, 2023
4b87e93
Merge remote-tracking branch 'origin/main' into scan-refactor
Blajda Oct 9, 2023
345da95
merge with merge-expr branch
Blajda Oct 9, 2023
ac764d6
Merge remote-tracking branch 'origin/main' into scan-refactor
Blajda Oct 13, 2023
5df2f6f
Merge branch 'main' into scan-refactor
Blajda Oct 20, 2023
f6b3ab4
Update rust/src/delta_datafusion/mod.rs
Blajda Oct 21, 2023
21300e5
Update rust/src/delta_datafusion/mod.rs
Blajda Oct 21, 2023
e372316
Merge branch 'main' into scan-refactor
Blajda Oct 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ arrow-buffer = { workspace = true, optional = true }
arrow-cast = { workspace = true, optional = true }
arrow-ord = { workspace = true, optional = true }
arrow-row = { workspace = true, optional = true }
arrow-schema = { workspace = true, optional = true }
arrow-schema = { workspace = true, optional = true, features = ["serde"] }
arrow-select = { workspace = true, optional = true }
parquet = { workspace = true, features = [
"async",
Expand Down
Loading
Loading