From 46c09f2f1e71bd3f36fdcc204d8a819a6947f36e Mon Sep 17 00:00:00 2001 From: Jefffrey Date: Tue, 20 Jan 2026 17:55:44 +0900 Subject: [PATCH] Disable failing `array_union` edge-case with nested null array --- datafusion/sqllogictest/test_files/array.slt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/datafusion/sqllogictest/test_files/array.slt b/datafusion/sqllogictest/test_files/array.slt index e17322f0fe01..1640cbbf7ff3 100644 --- a/datafusion/sqllogictest/test_files/array.slt +++ b/datafusion/sqllogictest/test_files/array.slt @@ -4747,10 +4747,11 @@ select array_union(arrow_cast([], 'LargeList(Int64)'), arrow_cast([], 'LargeList [] # array_union scalar function #7 -query ? -select array_union([[null]], []); ----- -[[]] +# re-enable when https://github.com/apache/arrow-rs/issues/9227 is fixed +# query ? +# select array_union([[null]], []); +# ---- +# [[]] query error DataFusion error: Error during planning: Failed to coerce arguments to satisfy a call to 'array_union' function: select array_union(arrow_cast([[null]], 'LargeList(List(Int64))'), arrow_cast([], 'LargeList(Int64)'));