From bc76db1a4408994bd0b183f39a1390dc9e3ebda4 Mon Sep 17 00:00:00 2001 From: Igor Calabria Date: Mon, 9 Oct 2023 11:51:14 +0100 Subject: [PATCH] fix group by with null keys https://github.com/cube-js/cube/issues/7197 --- rust/cubestore/Cargo.lock | 2 +- rust/cubestore/cubestore/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/cubestore/Cargo.lock b/rust/cubestore/Cargo.lock index 7f7437b9810d2..9f67a3789ed49 100644 --- a/rust/cubestore/Cargo.lock +++ b/rust/cubestore/Cargo.lock @@ -1271,7 +1271,7 @@ checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" [[package]] name = "datafusion" version = "4.0.0-SNAPSHOT" -source = "git+https://github.com/cube-js/arrow-datafusion?branch=cube#823422f3b2bbdcbc0b18e1ee9bf30a377dde010a" +source = "git+https://github.com/igorcalabria/arrow-datafusion.git?branch=fix-group-by-null-columns#c02d9715b6c77aaf7d752edee6f3b382bc8bfa2b" dependencies = [ "ahash", "arrow", diff --git a/rust/cubestore/cubestore/Cargo.toml b/rust/cubestore/cubestore/Cargo.toml index aeb18250c81b4..58f2c89367441 100644 --- a/rust/cubestore/cubestore/Cargo.toml +++ b/rust/cubestore/cubestore/Cargo.toml @@ -30,7 +30,7 @@ cubedatasketches = { path = "../cubedatasketches" } cuberpc = { path = "../cuberpc" } parquet = { git = "https://github.com/cube-js/arrow-rs", branch = "cube", features = ["arrow"] } arrow = { git = "https://github.com/cube-js/arrow-rs", branch = "cube" } -datafusion = { git = "https://github.com/cube-js/arrow-datafusion", branch = "cube", features = ["default_nulls_last"] } +datafusion = { git = "https://github.com/igorcalabria/arrow-datafusion.git", branch = "fix-group-by-null-columns", features = ["default_nulls_last"] } csv = "1.1.3" bytes = "1.6.0" serde_json = "1.0.56"