From 5523eef6d12d6db6c12b0953c29725122220be27 Mon Sep 17 00:00:00 2001 From: Heran Lin Date: Sun, 1 Mar 2026 11:30:19 +0800 Subject: [PATCH] fix: make the `sql` feature truly optional --- datafusion/core/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index 3d0a76a182697..8965948a0f4e2 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -88,8 +88,8 @@ recursive_protection = [ "datafusion-optimizer/recursive_protection", "datafusion-physical-optimizer/recursive_protection", "datafusion-physical-expr/recursive_protection", - "datafusion-sql/recursive_protection", - "sqlparser/recursive-protection", + "datafusion-sql?/recursive_protection", + "sqlparser?/recursive-protection", ] serde = [ "dep:serde",