Skip to content

Commit 5d54984

Browse files
committed
Use upstream result type
1 parent 7e19c20 commit 5d54984

File tree

5 files changed

+63
-185
lines changed

5 files changed

+63
-185
lines changed

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ panic = 'unwind'
7474
rpath = false
7575

7676
[patch.crates-io]
77-
arrow = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
78-
arrow-arith = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
79-
arrow-array = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
80-
arrow-buffer = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
81-
arrow-flight = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
82-
arrow-schema = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
83-
parquet = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
77+
arrow = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
78+
arrow-arith = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
79+
arrow-array = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
80+
arrow-buffer = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
81+
arrow-flight = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
82+
arrow-schema = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
83+
parquet = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }

datafusion-cli/Cargo.lock

+17-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion-cli/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ predicates = "3.0"
5151
rstest = "0.17"
5252

5353
[patch.crates-io]
54-
arrow = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
55-
arrow-arith = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
56-
arrow-array = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
57-
arrow-buffer = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
58-
arrow-flight = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
59-
arrow-schema = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
60-
parquet = { git = "https://github.com/tustvold/arrow-rs.git", rev = "41a7e5ac8691b181199e9d2fc8b90c383c6a8cd6" }
54+
arrow = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
55+
arrow-arith = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
56+
arrow-array = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
57+
arrow-buffer = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
58+
arrow-flight = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
59+
arrow-schema = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }
60+
parquet = { git = "https://github.com/tustvold/arrow-rs.git", rev = "f402dd3fe427453e43d7df8a5974151ca93d3306" }

datafusion/expr/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ path = "src/lib.rs"
3737
[dependencies]
3838
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
3939
arrow = { workspace = true }
40+
arrow-arith = { workspace = true }
4041
datafusion-common = { path = "../common", version = "27.0.0" }
4142
lazy_static = { version = "^1.4.0" }
4243
sqlparser = { workspace = true }

0 commit comments

Comments
 (0)