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

Proof of issue fix -- demonstrated with rebase on in-progress arrow upgrade. #37

Draft
wants to merge 44 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
f13c8f3
Update prost, prost-derive, pbjson
alamb Jul 9, 2024
c51fd50
udpate more
alamb Jul 9, 2024
839ba91
Merge remote-tracking branch 'apache/main' into alamb/update_prost
alamb Jul 10, 2024
a6cadde
Update datafusion/substrait/Cargo.toml
alamb Jul 10, 2024
e34019b
Merge branch 'alamb/update_prost' of github.com:alamb/datafusion into…
alamb Jul 10, 2024
7900a07
Update vendored code
alamb Jul 10, 2024
5ea5ced
revert upgrade in datafusion-examples until arrow-flight is updated
alamb Jul 10, 2024
6694983
Pin to pre-release arrow-rs
alamb Aug 16, 2024
4e3f97e
Merge remote-tracking branch 'alamb/alamb/update_prost' into alamb/up…
alamb Aug 16, 2024
6cc5db1
update pyo3
alamb Aug 16, 2024
68b6e6c
Update to use new arrow apis
alamb Aug 16, 2024
aa310fe
update for new api
alamb Aug 16, 2024
f454e89
Update tonic in examples
alamb Aug 16, 2024
98bb11a
update prost
alamb Aug 16, 2024
5b0fa44
update datafusion-cli/cargo
alamb Aug 16, 2024
6f501bc
update test output
alamb Aug 16, 2024
3542aea
update
alamb Aug 16, 2024
e6416c3
updates
alamb Aug 16, 2024
3a06488
updates
alamb Aug 16, 2024
5d7b0fe
update math
alamb Aug 16, 2024
cb623d9
update more
alamb Aug 16, 2024
c2a6bf5
fix scalar tests
alamb Aug 16, 2024
1ac1787
Port statistics to use new API
alamb Aug 16, 2024
67ad234
factor into a function
alamb Aug 16, 2024
5b6498e
update generated files
alamb Aug 16, 2024
e77b7df
Update test
alamb Aug 19, 2024
d38b99e
Merge remote-tracking branch 'apache/main' into alamb/update_arrow_53
alamb Aug 19, 2024
a89fa87
add new test
alamb Aug 19, 2024
3717c25
update tests
alamb Aug 19, 2024
230aeec
tapelo format
alamb Aug 19, 2024
ed2b222
Update other tests
alamb Aug 19, 2024
b446fcc
Merge remote-tracking branch 'apache/main' into alamb/update_arrow_53
alamb Aug 20, 2024
b666c31
Update datafusion pin
alamb Aug 20, 2024
f2be69f
Merge remote-tracking branch 'apache/main' into alamb/update_arrow_53
alamb Aug 21, 2024
2062a32
Update for API change
alamb Aug 21, 2024
82641d8
Merge remote-tracking branch 'apache/main' into alamb/update_arrow_53
alamb Aug 21, 2024
c61b499
Merge remote-tracking branch 'apache/main' into alamb/update_arrow_53
alamb Aug 22, 2024
36e1d1d
chore: move schema_force_string_view upwards to be listed with other …
wiedld Aug 29, 2024
055c7cb
refactor(12123): have file schema be merged on view types with table …
wiedld Aug 29, 2024
d7627ff
test(12123): test for with, and without schema_force_string_view
wiedld Aug 29, 2024
cdb946a
test(12123): demonstrate current upstream failure when reading page s…
wiedld Aug 29, 2024
2024799
chore(12123): update config.md
wiedld Aug 29, 2024
8cef364
chore: cleanup
wiedld Aug 29, 2024
a1edaa0
test: proof that once https://github.com/apache/datafusion/pull/12032…
wiedld Aug 29, 2024
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
18 changes: 17 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ indexmap = "2.0.0"
itertools = "0.13"
log = "^0.4"
num_cpus = "1.13.0"
object_store = { version = "0.10.2", default-features = false }
object_store = { version = "0.11.0", default-features = false }
parking_lot = "0.12"
parquet = { version = "52.2.0", default-features = false, features = [
"arrow",
Expand Down Expand Up @@ -165,3 +165,19 @@ large_futures = "warn"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin)"] }
unused_imports = "deny"

## Temporary arrow-rs patch until 53.0.0 is released

[patch.crates-io]
arrow = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-array = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-buffer = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-cast = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-data = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-ipc = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-schema = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-select = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-string = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-ord = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
arrow-flight = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
parquet = { git = "https://github.com/apache/arrow-rs.git", rev = "344ba1dd870cb8c7327a08a7020a0350d4afd687" }
Loading