should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
# name: test/fuzzer/duckfuzz/array_const_columndatacopy.test
# group: [duckfuzz]
# Fuzzyduck issue #2392
# Caused by not copying over enough child vector data when adding a const array vector to a column data collection
statement ok
CREATE TABLE uuids(uuid UUID);
statement ok
INSERT INTO uuids VALUES('00000000-0000-0000-0000-000000000000');
statement ok
INSERT INTO uuids VALUES('ffffffff-ffff-ffff-ffff-ffffffffffff');
query I
SELECT TRY_CAST(uuid AS STRUCT(b VARCHAR[3])) FROM uuids;
----
NULL
NULL