Files
email-tracker/external/duckdb/test/fuzzer/duckfuzz/strptime_const_arg.test
2025-10-24 19:21:19 -05:00

20 lines
936 B
SQL

# name: test/fuzzer/duckfuzz/strptime_const_arg.test
# description: Fuzzyduck issue #1128
# group: [duckfuzz]
statement ok
CREATE TABLE all_types AS
SELECT * EXCLUDE(small_enum, medium_enum, large_enum) FROM test_all_types() LIMIT 0;
statement error
SELECT COLUMNS(list_filter(*, (lambda c43: try_strptime('c29', 'c24'))))
FROM all_types AS t42(c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41)
----
<REGEX>:Binder Error.*Star expression.*
statement error
SELECT COLUMNS(list_filter(*, (c43 -> try_strptime('c29', 'c24'))))
FROM all_types AS t42(c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41)
----
<REGEX>:Binder Error.*Star expression.*