mirror of
https://github.com/langchain-ai/datafusion-materialized-views.git
synced 2026-06-30 21:07:59 -04:00
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:
@@ -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
@@ -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"
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user