diff --git a/Cargo.toml b/Cargo.toml index d728fce..bd3fc30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,19 +28,20 @@ keywords = ["arrow", "arrow-rs", "datafusion"] rust-version = "1.80" [dependencies] -arrow = "54" -arrow-schema = "54" +arrow = { git = "https://github.com/influxdata/arrow-rs", rev = "36685f0" } +arrow-schema = { git = "https://github.com/influxdata/arrow-rs", rev = "36685f0" } async-trait = "0.1" +chrono = "= 0.4.39" dashmap = "6" -datafusion = "45" -datafusion-common = "45" -datafusion-expr = "45" -datafusion-functions = "45" -datafusion-functions-aggregate = "45" -datafusion-optimizer = "45" -datafusion-physical-expr = "45" -datafusion-physical-plan = "45" -datafusion-sql = "45" +datafusion = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-common = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-functions = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-functions-aggregate = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-optimizer = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-physical-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-physical-plan = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } +datafusion-sql = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "08b3ce0" } futures = "0.3" itertools = "0.13" log = "0.4" diff --git a/src/rewrite.rs b/src/rewrite.rs index a81a9f1..170c88f 100644 --- a/src/rewrite.rs +++ b/src/rewrite.rs @@ -34,5 +34,5 @@ extensions_options! { } impl ConfigExtension for QueryRewriteOptions { - const PREFIX: &'static str = "QueryRewrite"; + const PREFIX: &'static str = "query_rewrite"; }