From 571368fbc307effce8b8a98423d596fd557e6af9 Mon Sep 17 00:00:00 2001 From: Joseph Koshakow Date: Tue, 11 Feb 2025 13:05:57 -0500 Subject: [PATCH] cli: Add nested expressions This commit adds nested expressions to the CLI by default so users can run functions like `array_slice` and other nested expressions. --- datafusion-cli/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index 987ac97452a94..43c7e29fc19d4 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -38,6 +38,7 @@ datafusion = { workspace = true, features = [ "crypto_expressions", "datetime_expressions", "encoding_expressions", + "nested_expressions", "parquet", "recursive_protection", "regex_expressions",