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/sqlsmith/timestamptz_null_range.test
# description: Check range bounds for NULL
# group: [sqlsmith]
require icu
require no_extension_autoloading "FIXME: generate_series(TIMESTAMP WITH TIME ZONE,...) currently do not autoload ICU"
statement ok
PRAGMA enable_verification
query I
SELECT NULL FROM (
SELECT 4767
FROM generate_series(CAST('290309-12-22 (BC) 00:00:00+00' AS TIMESTAMP WITH TIME ZONE), NULL, NULL)
AS t6(c1, c2, c3, c4, c5)
)
AS t64
----