Skip to content

Commit

Permalink
update datafusion/arrow: skip parquet utf-8 validating (#307)
Browse files Browse the repository at this point in the history
Co-authored-by: zhangli20 <[email protected]>
  • Loading branch information
richox and zhangli20 authored Nov 7, 2023
1 parent aed3a31 commit 4583716
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

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

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,26 @@ serde_json = { version = "1.0.96" }

[patch.crates-io]
# datafusion: branch=v30-blaze
datafusion = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "575fbfae9"}
datafusion-common = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "575fbfae9"}
datafusion-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "575fbfae9"}
datafusion-execution = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "575fbfae9"}
datafusion-optimizer = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "575fbfae9"}
datafusion-physical-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "575fbfae9"}
datafusion = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "312358e45"}
datafusion-common = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "312358e45"}
datafusion-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "312358e45"}
datafusion-execution = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "312358e45"}
datafusion-optimizer = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "312358e45"}
datafusion-physical-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "312358e45"}

# arrow: branch=v45-blaze
arrow = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-arith = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-array = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-buffer = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-cast = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-data = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-ord = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-row = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-schema = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-select = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow-string = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
parquet = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "35b6fded9"}
arrow = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-arith = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-array = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-buffer = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-cast = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-data = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-ord = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-row = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-schema = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-select = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
arrow-string = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}
parquet = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "1173507b57"}

# serde_json: branch=v1.0.96-blaze
serde_json = { git = "https://github.com/blaze-init/json", branch = "v1.0.96-blaze" }

0 comments on commit 4583716

Please sign in to comment.