From 87679b8fe9182a824c2d78e3f179a8334f49b50b Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Thu, 18 Sep 2025 21:04:50 +0900 Subject: [PATCH] minor: Ensure `datafusion-sql` package dependencies have `sql` flag --- datafusion/sql/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/sql/Cargo.toml b/datafusion/sql/Cargo.toml index 21102d886f22..08ce2d923e92 100644 --- a/datafusion/sql/Cargo.toml +++ b/datafusion/sql/Cargo.toml @@ -63,7 +63,7 @@ ctor = { workspace = true } # please do not move these dependencies to the main dependencies section datafusion-functions = { workspace = true, default-features = true } datafusion-functions-aggregate = { workspace = true } -datafusion-functions-nested = { workspace = true } +datafusion-functions-nested = { workspace = true, features = ["sql"] } datafusion-functions-window = { workspace = true } env_logger = { workspace = true } insta = { workspace = true }