Skip to content

Commit d9e2582

Browse files
committed
Upgrade Dependences
1 parent 5daf0b2 commit d9e2582

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ arrow = "55"
1818
arrow-flight = { version = "55", features = ["flight-sql-experimental"] }
1919
arrow-json = "55"
2020
async-trait = "0.1.88"
21-
datafusion = "47.0.0"
22-
datafusion-federation = { version = "0.4.2" }
23-
datafusion-substrait = "47.0.0"
21+
datafusion = "48.0.0"
22+
datafusion-federation = { version = "0.4.3" }
23+
datafusion-substrait = "48.0.0"
2424
futures = "0.3.31"
2525
tokio = { version = "1.44", features = ["full"] }
2626
tonic = { version = "0.12", features = [

datafusion-flight-sql-server/src/service.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -909,10 +909,7 @@ impl ArrowFlightSqlService for FlightSqlService {
909909

910910
let handle = query.prepared_statement_handle.as_ref();
911911
if let Ok(handle) = std::str::from_utf8(handle) {
912-
info!(
913-
"do_action_close_prepared_statement with handle {:?}",
914-
handle
915-
);
912+
info!("do_action_close_prepared_statement with handle {handle:?}",);
916913

917914
// NOP since stateless
918915
}

0 commit comments

Comments
 (0)