Skip to content

Commit

Permalink
feat: Bump arrow to 53 (#495)
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <github@xuanwo.io>
  • Loading branch information
Xuanwo authored Oct 28, 2024
1 parent 9fbd874 commit 3ac0b09
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ databend-driver-macros = { path = "macros", version = "0.21.1" }

tokio-stream = "0.1"
chrono = { version = "0.4.35", default-features = false, features = ["clock"] }
arrow = { version = "52.0" }
arrow-array = { version = "52.0" }
arrow-schema = { version = "52.0" }
arrow-flight = { version = "52.0", features = ["flight-sql-experimental"] }
tonic = { version = "0.11", default-features = false, features = [
arrow = { version = "53.0" }
arrow-array = { version = "53.0" }
arrow-schema = { version = "53.0" }
arrow-flight = { version = "53.0", features = ["flight-sql-experimental"] }
tonic = { version = "0.12", default-features = false, features = [
"transport",
"codegen",
"tls",
Expand Down
4 changes: 2 additions & 2 deletions bindings/python/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ pub(crate) static RUNTIME: tokio::runtime::Runtime = tokio::runtime::Builder::ne
.unwrap();

/// Utility to collect rust futures with GIL released
pub(crate) fn wait_for_future<F: std::future::Future>(py: Python, f: F) -> F::Output
pub(crate) fn wait_for_future<F>(py: Python, f: F) -> F::Output
where
F: Send,
F: std::future::Future + Send,
F::Output: Send,
{
py.allow_threads(|| RUNTIME.block_on(f))
Expand Down
3 changes: 2 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@
"cross-env": "^7.0.3",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13"
}
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}

0 comments on commit 3ac0b09

Please sign in to comment.