Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangli20 committed Dec 20, 2024
1 parent 66bb028 commit 7193177
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 54 deletions.
68 changes: 34 additions & 34 deletions Cargo.lock

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

38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,27 +66,27 @@ serde_json = { version = "1.0.96" }

[patch.crates-io]
# datafusion: branch=v42-blaze
datafusion = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "8ffbb23b1"}
datafusion-common = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "8ffbb23b1"}
datafusion-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "8ffbb23b1"}
datafusion-execution = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "8ffbb23b1"}
datafusion-optimizer = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "8ffbb23b1"}
datafusion-physical-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "8ffbb23b1"}
orc-rust = { git = "https://github.com/blaze-init/datafusion-orc.git", rev = "b6e4de6"}
datafusion = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "6823ee9d3"}
datafusion-common = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "6823ee9d3"}
datafusion-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "6823ee9d3"}
datafusion-execution = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "6823ee9d3"}
datafusion-optimizer = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "6823ee9d3"}
datafusion-physical-expr = { git = "https://github.com/blaze-init/arrow-datafusion.git", rev = "6823ee9d3"}
orc-rust = { git = "https://github.com/blaze-init/datafusion-orc.git", rev = "1c416bc"}

# arrow: branch=v53-blaze
arrow = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-arith = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-array = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-buffer = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-cast = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-data = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-ord = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-row = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-schema = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-select = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow-string = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
parquet = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "2ff32f9f72"}
arrow = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-arith = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-array = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-buffer = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-cast = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-data = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-ord = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-row = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-schema = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-select = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
arrow-string = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}
parquet = { git = "https://github.com/blaze-init/arrow-rs.git", rev = "e3b6a2f22a"}

# serde_json: branch=v1.0.96-blaze
serde_json = { git = "https://github.com/blaze-init/json", branch = "v1.0.96-blaze" }
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ abstract class NativeFileSourceScanBase(basedFileScan: FileSourceScanExec)
field.copy(nullable = true)
case field =>
// avoid converting unsupported type in non-used fields
StructField(field.name, NullType, nullable = true)
StructField(field.name, field.dataType, nullable = true)
}))

protected def nativePartitionSchema: pb.Schema =
Expand Down

0 comments on commit 7193177

Please sign in to comment.