Skip to content

Commit 9fb904c

Browse files
committed
upgrade datafusion to 47.0
1 parent 1a08c34 commit 9fb904c

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ readme = "README.md"
1414
repository = "https://github.com/datafusion-contrib/datafusion-flight-sql-server"
1515

1616
[workspace.dependencies]
17-
arrow = "54"
18-
arrow-flight = { version = "54", features = ["flight-sql-experimental"] }
19-
arrow-json = "54"
20-
async-trait = "0.1.83"
21-
datafusion = "46.0.1"
22-
datafusion-federation = { version = "0.3.7" }
23-
datafusion-substrait = "46.0.1"
17+
arrow = "55"
18+
arrow-flight = { version = "55", features = ["flight-sql-experimental"] }
19+
arrow-json = "55"
20+
async-trait = "0.1.88"
21+
datafusion = "47.0.0"
22+
datafusion-federation = { version = "0.4.2" }
23+
datafusion-substrait = "47.0.0"
2424
futures = "0.3.31"
25-
tokio = { version = "1.41", features = ["full"] }
25+
tokio = { version = "1.44", features = ["full"] }
2626
tonic = { version = "0.12", features = [
2727
"tls",
2828
"transport",

datafusion-flight-sql-server/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ datafusion-federation = { workspace = true, features = ["sql"] }
2222
datafusion-substrait.workspace = true
2323
datafusion.workspace = true
2424
futures.workspace = true
25-
log = "0.4.22"
26-
once_cell = "1.19.0"
27-
prost = "0.13.1"
25+
log = "0.4"
26+
once_cell = "1.21"
27+
prost = "0.13"
2828
tonic.workspace = true
2929
async-trait.workspace = true
3030

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ fn df_error_to_status(err: DataFusionError) -> Status {
10721072
}
10731073

10741074
fn status_to_flight_error(status: Status) -> FlightError {
1075-
FlightError::Tonic(status)
1075+
FlightError::Tonic(Box::new(status))
10761076
}
10771077

10781078
async fn decode_schema(decoder: &mut FlightDataDecoder) -> Result<SchemaRef, Status> {

0 commit comments

Comments
 (0)