14 lines
259 B
SQL
14 lines
259 B
SQL
# name: test/issues/rigger/test_580.test
|
|
# description: Issue 580
|
|
# group: [rigger]
|
|
|
|
statement ok
|
|
PRAGMA enable_verification
|
|
|
|
# SUBSTRING with an invalid start position causes a segmentation fault #580
|
|
query T
|
|
SELECT SUBSTRING(0::VARCHAR, 3, 0)
|
|
----
|
|
(empty)
|
|
|