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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ arrow-schema = "55.1.0"
async-trait = "0.1"
chrono = "= 0.4.41"
dashmap = "6"
datafusion = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-common = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-functions = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-functions-aggregate = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-optimizer = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-physical-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-physical-plan = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion-sql = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "6e71350" }
datafusion = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-common = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-functions = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-functions-aggregate = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-optimizer = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-physical-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-physical-plan = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
datafusion-sql = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "194d952" }
futures = "0.3"
itertools = "0.14"
log = "0.4"
Expand Down
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