14 lines
261 B
SQL
14 lines
261 B
SQL
# name: test/issues/rigger/test_587.test
|
|
# description: Issue 587
|
|
# group: [rigger]
|
|
|
|
statement ok
|
|
PRAGMA enable_verification
|
|
|
|
# A negative DATE results in a 'double free or corruption' crash
|
|
query T
|
|
SELECT (DATE '-10000-01-01')::VARCHAR;
|
|
----
|
|
10001-01-01 (BC)
|
|
|