Skip to content

Commit 3026895

Browse files
authored
Upgrade DF to 49.0.2 (#86)
* Upgrade DF to 49.0.2 * fix clippy and upgrade rust * upgrade version for Cargo Deny
1 parent 25e5ccc commit 3026895

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
runs-on: ubuntu-latest
133133
steps:
134134
- uses: actions/checkout@v3
135-
- uses: EmbarkStudios/cargo-deny-action@v1
135+
- uses: EmbarkStudios/cargo-deny-action@v2
136136
with:
137137
command: check license
138138

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ authors = ["Matthew Cramerus <[email protected]>"]
2525
license = "Apache-2.0"
2626
description = "Materialized Views & Query Rewriting in DataFusion"
2727
keywords = ["arrow", "arrow-rs", "datafusion"]
28-
rust-version = "1.80"
28+
rust-version = "1.85.1"
2929

3030
[dependencies]
3131
arrow = "55.2.0"
3232
arrow-schema = "55.2.0"
3333
async-trait = "0.1"
3434
dashmap = "6"
35-
datafusion = "49"
36-
datafusion-common = "49"
37-
datafusion-expr = "49"
38-
datafusion-functions = "49"
39-
datafusion-functions-aggregate = "49"
40-
datafusion-optimizer = "49"
41-
datafusion-physical-expr = "49"
42-
datafusion-physical-plan = "49"
43-
datafusion-sql = "49"
35+
datafusion = "49.0.2"
36+
datafusion-common = "49.0.2"
37+
datafusion-expr = "49.0.2"
38+
datafusion-functions = "49.0.2"
39+
datafusion-functions-aggregate = "49.0.2"
40+
datafusion-optimizer = "49.0.2"
41+
datafusion-physical-expr = "49.0.2"
42+
datafusion-physical-plan = "49.0.2"
43+
datafusion-sql = "49.0.2"
4444
futures = "0.3"
4545
itertools = "0.14"
4646
log = "0.4"

tests/materialized_listing_table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ impl TableProvider for MaterializedListingTable {
504504
self.inner.get_table_definition()
505505
}
506506

507-
fn get_logical_plan(&self) -> Option<Cow<LogicalPlan>> {
507+
fn get_logical_plan(&self) -> Option<Cow<'_, LogicalPlan>> {
508508
// We _could_ return the LogicalPlan here,
509509
// but it will cause this table to be treated like a regular view
510510
// and the materialized results will not be used.

0 commit comments

Comments
 (0)