Skip to content

Commit

Permalink
update datafusion/arrow version to fix is_null(NullArray) issue (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangli20 committed Sep 26, 2023
1 parent 6e442d6 commit f53a0f0
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 41 deletions.
46 changes: 23 additions & 23 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 @@ -64,26 +64,26 @@ serde_json = { version = "1.0.96" }

[patch.crates-io]
# datafusion: branch=v27-blaze
datafusion = { git = "https://github.com/richox/arrow-datafusion.git", rev = "1c8bdc34b"}
datafusion-common = { git = "https://github.com/richox/arrow-datafusion.git", rev = "1c8bdc34b"}
datafusion-expr = { git = "https://github.com/richox/arrow-datafusion.git", rev = "1c8bdc34b"}
datafusion-execution = { git = "https://github.com/richox/arrow-datafusion.git", rev = "1c8bdc34b"}
datafusion-optimizer = { git = "https://github.com/richox/arrow-datafusion.git", rev = "1c8bdc34b"}
datafusion-physical-expr = { git = "https://github.com/richox/arrow-datafusion.git", rev = "1c8bdc34b"}
datafusion = { git = "https://github.com/richox/arrow-datafusion.git", rev = "6bfa06c10"}
datafusion-common = { git = "https://github.com/richox/arrow-datafusion.git", rev = "6bfa06c10"}
datafusion-expr = { git = "https://github.com/richox/arrow-datafusion.git", rev = "6bfa06c10"}
datafusion-execution = { git = "https://github.com/richox/arrow-datafusion.git", rev = "6bfa06c10"}
datafusion-optimizer = { git = "https://github.com/richox/arrow-datafusion.git", rev = "6bfa06c10"}
datafusion-physical-expr = { git = "https://github.com/richox/arrow-datafusion.git", rev = "6bfa06c10"}

# arrow: branch=v42-blaze
arrow = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-arith = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-array = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-buffer = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-cast = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-data = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-ord = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-row = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-schema = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-select = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow-string = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
parquet = { git = "https://github.com/richox/arrow-rs.git", rev = "696fcb858"}
arrow = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-arith = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-array = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-buffer = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-cast = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-data = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-ord = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-row = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-schema = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-select = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
arrow-string = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}
parquet = { git = "https://github.com/richox/arrow-rs.git", rev = "2eb072067"}

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

0 comments on commit f53a0f0

Please sign in to comment.