should be it
This commit is contained in:
21
external/duckdb/test/fuzzer/duckfuzz/limit_percent_subquery.test
vendored
Normal file
21
external/duckdb/test/fuzzer/duckfuzz/limit_percent_subquery.test
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# name: test/fuzzer/duckfuzz/limit_percent_subquery.test
|
||||
# description: Limit percent subquery
|
||||
# group: [duckfuzz]
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_verification
|
||||
|
||||
statement ok
|
||||
create table tbl(i INT);
|
||||
|
||||
query I
|
||||
FROM tbl LIMIT (EXISTS(SELECT 42))%
|
||||
----
|
||||
|
||||
statement ok
|
||||
INSERT INTO tbl VALUES (42);
|
||||
|
||||
query I
|
||||
FROM tbl LIMIT (EXISTS(SELECT 42))%
|
||||
----
|
||||
|
||||
Reference in New Issue
Block a user