From f8aa5db79916c1e9e0caaefd6b9a2c6ed3714ec7 Mon Sep 17 00:00:00 2001 From: Qi Zhu Date: Thu, 4 Sep 2025 14:47:10 +0800 Subject: [PATCH] Upgrade DF to latest internal DF --- Cargo.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e84a189..a6e1e7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,15 +32,15 @@ arrow = "55.2.0" arrow-schema = "55.2.0" async-trait = "0.1" dashmap = "6" -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" +datafusion = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-common = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-functions = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-functions-aggregate = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-optimizer = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-physical-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-physical-plan = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } +datafusion-sql = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "be0276d" } futures = "0.3" itertools = "0.14" log = "0.4"