Upgrade DF to 49.0.2 (#86)

* Upgrade DF to 49.0.2

* fix clippy and upgrade rust

* upgrade version for Cargo Deny
This commit is contained in:
Qi Zhu
2025-09-03 13:55:04 +08:00
committed by GitHub
parent 25e5ccc06a
commit 3026895c6d
3 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
- uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check license
+10 -10
View File
@@ -25,22 +25,22 @@ authors = ["Matthew Cramerus <matt@polygon.io>"]
license = "Apache-2.0"
description = "Materialized Views & Query Rewriting in DataFusion"
keywords = ["arrow", "arrow-rs", "datafusion"]
rust-version = "1.80"
rust-version = "1.85.1"
[dependencies]
arrow = "55.2.0"
arrow-schema = "55.2.0"
async-trait = "0.1"
dashmap = "6"
datafusion = "49"
datafusion-common = "49"
datafusion-expr = "49"
datafusion-functions = "49"
datafusion-functions-aggregate = "49"
datafusion-optimizer = "49"
datafusion-physical-expr = "49"
datafusion-physical-plan = "49"
datafusion-sql = "49"
datafusion = "49.0.2"
datafusion-common = "49.0.2"
datafusion-expr = "49.0.2"
datafusion-functions = "49.0.2"
datafusion-functions-aggregate = "49.0.2"
datafusion-optimizer = "49.0.2"
datafusion-physical-expr = "49.0.2"
datafusion-physical-plan = "49.0.2"
datafusion-sql = "49.0.2"
futures = "0.3"
itertools = "0.14"
log = "0.4"
+1 -1
View File
@@ -504,7 +504,7 @@ impl TableProvider for MaterializedListingTable {
self.inner.get_table_definition()
}
fn get_logical_plan(&self) -> Option<Cow<LogicalPlan>> {
fn get_logical_plan(&self) -> Option<Cow<'_, LogicalPlan>> {
// We _could_ return the LogicalPlan here,
// but it will cause this table to be treated like a regular view
// and the materialized results will not be used.