13 lines
298 B
SQL
13 lines
298 B
SQL
# 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;
|