Skip to content

Commit

Permalink
DO NOT MERGE: Use arrow-rs version with comment support
Browse files Browse the repository at this point in the history
This commit switches to used version of arrow-rs to the version of
apache/arrow-rs#5759 which introduces support for comments in CSV input
files.
  • Loading branch information
bbannier committed May 12, 2024
1 parent c09fd0b commit 7abc3bb
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 42 deletions.
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,17 +135,17 @@ large_futures = "warn"
unused_imports = "deny"

[patch.crates-io]
arrow-arith = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-array = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-buffer = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-cast = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-csv = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-data = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-flight = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-ipc = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-json = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-ord = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-row = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-schema = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-select = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-string = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-arith = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-array = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-buffer = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-cast = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-csv = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-data = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-flight = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-ipc = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-json = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-ord = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-row = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-schema = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-select = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-string = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
28 changes: 14 additions & 14 deletions datafusion-cli/Cargo.lock

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

28 changes: 14 additions & 14 deletions datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,17 @@ predicates = "3.0"
rstest = "0.17"

[patch.crates-io]
arrow-arith = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-array = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-buffer = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-cast = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-csv = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-data = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-flight = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-ipc = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-json = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-ord = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-row = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-schema = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-select = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-string = { git = "https://github.com/apache/arrow-rs.git", rev = "1c869214e2cf25959750756a65a0c042444e5d5d" }
arrow-arith = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-array = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-buffer = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-cast = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-csv = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-data = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-flight = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-ipc = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-json = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-ord = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-row = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-schema = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-select = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }
arrow-string = { git = "https://github.com/bbannier/arrow-rs.git", branch = "t/comment" }

0 comments on commit 7abc3bb

Please sign in to comment.