should be it
This commit is contained in:
12
external/duckdb/test/sql/update/update_default.test
vendored
Normal file
12
external/duckdb/test/sql/update/update_default.test
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# name: test/sql/update/update_default.test
|
||||
# description: Test for 40th item of fuzzer issues from https://github.com/duckdb/duckdb/issues/5984
|
||||
# group: [update]
|
||||
|
||||
statement ok
|
||||
CREATE TABLE t1 (c0 INT);
|
||||
|
||||
statement ok
|
||||
INSERT INTO t1(c0) VALUES (1),(2),(3);
|
||||
|
||||
statement ok
|
||||
UPDATE t1 SET c0 = DEFAULT;
|
||||
Reference in New Issue
Block a user