11 lines
275 B
SQL
11 lines
275 B
SQL
# name: test/fuzzer/afl/alter_if_exists.test
|
|
# description: Test alter table if it does not exist
|
|
# group: [afl]
|
|
|
|
statement ok
|
|
ALTER TABLE IF EXISTS t0 ADD COLUMN c1 INT;
|
|
|
|
statement error
|
|
ALTER TABLE t0 ADD COLUMN c1 INT;
|
|
----
|
|
Catalog Error: Table with name t0 does not exist |