Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ version = "0.1.1"
edition = "2021"
homepage = "https://github.com/datafusion-contrib/datafusion-materialized-views"
repository = "https://github.com/datafusion-contrib/datafusion-materialized-views"
authors = ["Matthew Cramerus <[email protected]>"]
authors = ["Massive Engineering <[email protected]>"]
license = "Apache-2.0"
description = "Materialized Views & Query Rewriting in DataFusion"
keywords = ["arrow", "arrow-rs", "datafusion"]
rust-version = "1.80"
rust-version = "1.91"

[dependencies]

Expand All @@ -34,15 +34,15 @@ arrow-schema = { version = "55.0.0" }
async-trait = "0.1"
chrono = "= 0.4.40"
dashmap = "6"
datafusion = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-common = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-functions = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-functions-aggregate = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-optimizer = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-physical-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-physical-plan = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion-sql = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" }
datafusion = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-common = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-expr = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-functions = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-functions-aggregate = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-optimizer = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-physical-expr = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-physical-plan = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
datafusion-sql = { git = "https://github.com/massive-com/arrow-datafusion", rev = "a13a6fe" }
futures = "0.3"
itertools = "0.14"
log = "0.4"
Expand Down
21 changes: 21 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

[toolchain]
channel = "1.91.0"
components = ["rust-analyzer", "rustfmt", "clippy"]

2 changes: 1 addition & 1 deletion tests/materialized_listing_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,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.
Expand Down
Loading