Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
Dandandan committed Dec 6, 2024
1 parent cd30a64 commit 4cb0ebe
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
21 changes: 10 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,21 @@ version = "42.1.0"
ahash = { version = "0.8", default-features = false, features = [
"runtime-rng",
] }
arrow = { version = "53.2.0", features = [
arrow = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", features = [
"prettyprint",
] }
arrow-array = { version = "53.2.0", default-features = false, features = [
arrow-array = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", default-features = false, features = [
"chrono-tz",
] }
arrow-buffer = { version = "53.2.0", default-features = false }
arrow-flight = { version = "53.2.0", features = [
"flight-sql-experimental",
] }
arrow-ipc = { version = "53.2.0", default-features = false, features = [
arrow-buffer = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", default-features = false }
arrow-flight = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", features = ["flight-sql-experimental"]}

arrow-ipc = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", default-features = false, features = [
"lz4",
] }
arrow-ord = { version = "53.2.0", default-features = false }
arrow-schema = { version = "53.2.0", default-features = false }
arrow-string = { version = "53.2.0", default-features = false }
arrow-ord = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", default-features = false }
arrow-schema = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", default-features = false }
arrow-string = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", default-features = false }
async-trait = "0.1.73"
bigdecimal = "=0.4.1"
bytes = "1.4"
Expand Down Expand Up @@ -126,7 +125,7 @@ log = "^0.4"
num_cpus = "1.13.0"
object_store = { version = "0.11.0", default-features = false }
parking_lot = "0.12"
parquet = { version = "53.2.0", default-features = false, features = [
parquet = { git = "https://github.com/Coralogix/arrow-rs.git", tag = "v53.3.0-tonic-downgrade", default-features = false, features = [
"arrow",
"async",
"object_store",
Expand Down
2 changes: 1 addition & 1 deletion datafusion-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ serde_json = { workspace = true }
tempfile = { workspace = true }
test-utils = { path = "../test-utils" }
tokio = { workspace = true, features = ["rt-multi-thread", "parking_lot"] }
tonic = "0.12.1"
tonic = "0.11"
url = { workspace = true }
uuid = "1.7"

Expand Down
2 changes: 1 addition & 1 deletion datafusion/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ num_cpus = { workspace = true }
object_store = { workspace = true, optional = true }
parquet = { workspace = true, optional = true, default-features = true }
paste = "1.0.15"
pyo3 = { version = "0.22.0", optional = true }
pyo3 = { version = "0.23.0", optional = true }
sqlparser = { workspace = true }
tokio = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion datafusion/execution/src/memory_pool/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ impl<I: MemoryPool> MemoryPool for TrackConsumersPool<I> {
fn reserved(&self) -> usize {
self.inner.reserved()
}

fn pool_size(&self) -> Option<usize> {
self.inner.pool_size()
}
Expand Down

0 comments on commit 4cb0ebe

Please sign in to comment.