Skip to content

Commit 36f9e45

Browse files
author
Brent Gardner
committed
Update to correct arrow-rs
1 parent fb52f06 commit 36f9e45

12 files changed

Lines changed: 19 additions & 19 deletions

File tree

datafusion-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rust-version = "1.62"
2929
readme = "README.md"
3030

3131
[dependencies]
32-
arrow = { git = "https://github.com/apache/arrow-rs.git", rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e" }
32+
arrow = { rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", git = "https://github.com/spaceandtimelabs/arrow-rs.git" }
3333
clap = { version = "3", features = ["derive", "cargo"] }
3434
datafusion = { path = "../datafusion/core" }
3535
dirs = "4.0.0"

datafusion-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ path = "examples/avro_sql.rs"
3434
required-features = ["datafusion/avro"]
3535

3636
[dev-dependencies]
37-
arrow-flight = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", git = "https://github.com/apache/arrow-rs.git" }
37+
arrow-flight = { git = "https://github.com/spaceandtimelabs/arrow-rs.git", rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939" }
3838
async-trait = "0.1.41"
3939
datafusion = { path = "../datafusion/core" }
4040
futures = "0.3"

datafusion/common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ pyarrow = ["pyo3"]
3939

4040
[dependencies]
4141
apache-avro = { version = "0.14", features = ["snappy"], optional = true }
42-
arrow = { features = ["prettyprint"], git = "https://github.com/apache/arrow-rs.git", rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e" }
42+
arrow = { features = ["prettyprint"], rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", git = "https://github.com/spaceandtimelabs/arrow-rs.git" }
4343
avro-rs = { version = "0.13", features = ["snappy"], optional = true }
4444
cranelift-module = { version = "0.86.1", optional = true }
45-
object_store = { git = "https://github.com/apache/arrow-rs.git", optional = true, rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e" }
45+
object_store = { rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", optional = true, git = "https://github.com/spaceandtimelabs/arrow-rs.git" }
4646
ordered-float = "3.0"
47-
parquet = { git = "https://github.com/apache/arrow-rs.git", features = ["arrow"], optional = true, rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e" }
47+
parquet = { git = "https://github.com/spaceandtimelabs/arrow-rs.git", rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", optional = true, features = ["arrow"] }
4848
pyo3 = { version = "0.16", optional = true }
4949
serde_json = "1.0"
5050
sqlparser = "0.21"

datafusion/core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ unicode_expressions = ["datafusion-physical-expr/regex_expressions", "datafusion
5656
[dependencies]
5757
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
5858
apache-avro = { version = "0.14", optional = true }
59-
arrow = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", features = ["prettyprint"], git = "https://github.com/apache/arrow-rs.git" }
59+
arrow = { git = "https://github.com/spaceandtimelabs/arrow-rs.git", rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", features = ["prettyprint"] }
6060
async-trait = "0.1.41"
6161
bytes = "1.1"
6262
chrono = { version = "0.4", default-features = false }
63-
datafusion-common = { features = ["parquet", "object_store"], path = "../common" }
63+
datafusion-common = { path = "../common", features = ["parquet", "object_store"] }
6464
datafusion-expr = { path = "../expr" }
6565
datafusion-jit = { path = "../jit", optional = true }
6666
datafusion-optimizer = { path = "../optimizer" }
@@ -75,10 +75,10 @@ lazy_static = { version = "^1.4.0" }
7575
log = "^0.4"
7676
num-traits = { version = "0.2", optional = true }
7777
num_cpus = "1.13.0"
78-
object_store = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", git = "https://github.com/apache/arrow-rs.git" }
78+
object_store = { git = "https://github.com/spaceandtimelabs/arrow-rs.git", rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939" }
7979
ordered-float = "3.0"
8080
parking_lot = "0.12"
81-
parquet = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", git = "https://github.com/apache/arrow-rs.git", features = ["arrow", "async"] }
81+
parquet = { git = "https://github.com/spaceandtimelabs/arrow-rs.git", features = ["arrow", "async"], rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939" }
8282
paste = "^1.0"
8383
pin-project-lite = "^0.2.7"
8484
pyo3 = { version = "0.16", optional = true }

datafusion/core/fuzz-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ edition = "2021"
2323
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2424

2525
[dependencies]
26-
arrow = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", features = ["prettyprint"], git = "https://github.com/apache/arrow-rs.git" }
26+
arrow = { features = ["prettyprint"], git = "https://github.com/spaceandtimelabs/arrow-rs.git", rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939" }
2727
env_logger = "0.9.0"
2828
rand = "0.8"

datafusion/expr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ path = "src/lib.rs"
3636

3737
[dependencies]
3838
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
39-
arrow = { features = ["prettyprint"], git = "https://github.com/apache/arrow-rs.git", rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e" }
39+
arrow = { git = "https://github.com/spaceandtimelabs/arrow-rs.git", rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", features = ["prettyprint"] }
4040
datafusion-common = { path = "../common" }
4141
sqlparser = "0.21"

datafusion/jit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ path = "src/lib.rs"
3636
jit = []
3737

3838
[dependencies]
39-
arrow = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", git = "https://github.com/apache/arrow-rs.git" }
39+
arrow = { rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", git = "https://github.com/spaceandtimelabs/arrow-rs.git" }
4040
cranelift = "0.86.1"
4141
cranelift-jit = "0.86.1"
4242
cranelift-module = "0.86.1"
4343
cranelift-native = "0.86.1"
44-
datafusion-common = { features = ["jit"], path = "../common" }
44+
datafusion-common = { path = "../common", features = ["jit"] }
4545
datafusion-expr = { path = "../expr" }
4646

4747
parking_lot = "0.12"

datafusion/optimizer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ default = ["unicode_expressions"]
3737
unicode_expressions = []
3838

3939
[dependencies]
40-
arrow = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", features = ["prettyprint"], git = "https://github.com/apache/arrow-rs.git" }
40+
arrow = { features = ["prettyprint"], git = "https://github.com/spaceandtimelabs/arrow-rs.git", rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939" }
4141
async-trait = "0.1.41"
4242
chrono = { version = "0.4", default-features = false }
4343
datafusion-common = { path = "../common" }

datafusion/physical-expr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ unicode_expressions = ["unicode-segmentation"]
4040

4141
[dependencies]
4242
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
43-
arrow = { rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e", features = ["prettyprint"], git = "https://github.com/apache/arrow-rs.git" }
43+
arrow = { rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", git = "https://github.com/spaceandtimelabs/arrow-rs.git", features = ["prettyprint"] }
4444
blake2 = { version = "^0.10.2", optional = true }
4545
blake3 = { version = "1.0", optional = true }
4646
chrono = { version = "0.4", default-features = false }

datafusion/proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ default = []
3737
json = ["pbjson", "pbjson-build", "serde", "serde_json"]
3838

3939
[dependencies]
40-
arrow = { git = "https://github.com/apache/arrow-rs.git", rev = "68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e" }
40+
arrow = { rev = "a233d42b13e9b585e5cb47c3e7c15d254e7cc939", git = "https://github.com/spaceandtimelabs/arrow-rs.git" }
4141
datafusion = { path = "../core" }
4242
datafusion-common = { path = "../common" }
4343
datafusion-expr = { path = "../expr" }

0 commit comments

Comments
 (0)