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

16 lines
389 B
SQL

# name: test/fuzzer/pedro/strftime_constant_null.test
# description: Strftime assertion trigger
# group: [pedro]
statement ok
CREATE TABLE t0 (c1 TIMESTAMP);
statement ok
INSERT INTO t0 VALUES (TIMESTAMP '91288-5-25 0:5:30'),(TIMESTAMP '253915-8-21 3:7:0');
statement ok
PRAGMA DISABLE_OPTIMIZER;
statement ok
SELECT strftime(TIMESTAMP '2608-11-25 3:4:35',coalesce('a', 'b')) FROM t0;