should be it
This commit is contained in:
16
external/duckdb/test/fuzzer/duckfuzz/array_slice_underflow.test
vendored
Normal file
16
external/duckdb/test/fuzzer/duckfuzz/array_slice_underflow.test
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
# name: test/fuzzer/duckfuzz/array_slice_underflow.test
|
||||
# description: Array slice underflow
|
||||
# group: [duckfuzz]
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_verification
|
||||
|
||||
query I
|
||||
SELECT ([1, 2, 3])[0:-9223372036854775808];
|
||||
----
|
||||
[]
|
||||
|
||||
query I
|
||||
SELECT ([1, 2, 3])[-9223372036854775808:0];
|
||||
----
|
||||
[]
|
||||
Reference in New Issue
Block a user