diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14bf19f..43ec6b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 8b61d4d..df8040f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/tests/materialized_listing_table.rs b/tests/materialized_listing_table.rs index 5ad9d25..b4d7272 100644 --- a/tests/materialized_listing_table.rs +++ b/tests/materialized_listing_table.rs @@ -503,7 +503,7 @@ impl TableProvider for MaterializedListingTable { self.inner.get_table_definition() } - fn get_logical_plan(&self) -> Option> { + fn get_logical_plan(&self) -> Option> { // 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.