Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
9a161d2
Pin to https://github.com/apache/arrow-rs/pull/7597
alamb Jun 4, 2025
083931d
Update pin
alamb Jun 4, 2025
e79454f
Use upstream BatchCoalescer
alamb Jun 4, 2025
4e8e1ce
Update the pin
alamb Jun 4, 2025
9e20973
Update tests
alamb Jun 4, 2025
8918b3c
Update rev
Dandandan Jun 7, 2025
49cb62e
Update rev
Dandandan Jun 7, 2025
140ee9c
New rev
Dandandan Jun 7, 2025
5d5683c
New rev
Dandandan Jun 7, 2025
f79dd09
New rev
Dandandan Jun 7, 2025
1c44c5c
cargo fmt
Dandandan Jun 7, 2025
ea8b700
update pin
alamb Jun 8, 2025
f2fc00b
Merge branch 'main' into alamb/test_upstream_coalesce
Dandandan Jun 13, 2025
a36065e
Merge branch 'main' into alamb/test_upstream_coalesce
Dandandan Jun 15, 2025
423137a
Merge remote-tracking branch 'apache/main' into alamb/test_upstream_c…
alamb Jun 17, 2025
1c61513
Temp pin to https://github.com/apache/arrow-rs/pull/7650
alamb Jun 17, 2025
ed31ce1
Update plans for smaller parquet files
alamb Jun 17, 2025
5349c73
Merge remote-tracking branch 'apache/main' into alamb/test_upstream_c…
alamb Jun 19, 2025
c5bb25e
update pin
alamb Jun 19, 2025
2f94a22
Merge remote-tracking branch 'upstream/main' into revive_to_use_upstr…
zhuqi-lucas Aug 9, 2025
fe7e6a3
fix test
zhuqi-lucas Aug 9, 2025
0832ff4
fix
zhuqi-lucas Aug 9, 2025
396ef3c
Merge branch 'main' into revive_to_use_upstream_arrow_coalesce
zhuqi-lucas Aug 9, 2025
7e6ced0
fix test
zhuqi-lucas Aug 9, 2025
3ccea48
fix
zhuqi-lucas Aug 9, 2025
bac0197
fix
zhuqi-lucas Aug 9, 2025
64fc038
Merge branch 'main' into revive_to_use_upstream_arrow_coalesce
zhuqi-lucas Aug 10, 2025
8bbadaf
Address comments
zhuqi-lucas Aug 10, 2025
c88085b
Merge remote-tracking branch 'upstream/main' into revive_to_use_upstr…
zhuqi-lucas Aug 13, 2025
940d49d
address new comments
zhuqi-lucas Aug 13, 2025
4e31d7b
Merge branch 'main' into revive_to_use_upstream_arrow_coalesce
zhuqi-lucas Aug 13, 2025
6db1280
try optimize performance for coalesce
zhuqi-lucas Aug 14, 2025
45ff6f0
Merge branch 'main' into test_optimize_performance
zhuqi-lucas Aug 14, 2025
0334776
fix
zhuqi-lucas Aug 14, 2025
64c67c5
Merge branch 'main' into test_optimize_performance
zhuqi-lucas Aug 15, 2025
d7cf005
Merge remote-tracking branch 'upstream/main' into test_optimize_perfo…
zhuqi-lucas Aug 17, 2025
82ed301
Merge branch 'test_optimize_performance' of github.com:zhuqi-lucas/ar…
zhuqi-lucas Aug 17, 2025
5f660da
update upstream
zhuqi-lucas Aug 18, 2025
772b590
Merge remote-tracking branch 'upstream/main' into test_optimize_perfo…
Aug 22, 2025
8dec409
Merge branch 'main' into test_optimize_performance
zhuqi-lucas Aug 23, 2025
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
52 changes: 18 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -231,3 +231,19 @@ unexpected_cfgs = { level = "warn", check-cfg = [
"cfg(tarpaulin_include)",
] }
unused_qualifications = "deny"

# patch branch to use testing version of arrow
# pin to zhuqi-lucas/support_exact_size_config branch
[patch.crates-io]
arrow = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-array = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-buffer = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-cast = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-data = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-ipc = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-schema = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-select = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-string = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-ord = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
arrow-flight = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
parquet = { git = "https://github.com/zhuqi-lucas/arrow-rs.git", rev = "ce026665f053cac78f01b978c6608c7f9f3d30d6" }
2 changes: 1 addition & 1 deletion datafusion-testing
Loading
Loading