16 lines
350 B
SQL
16 lines
350 B
SQL
# name: test/issues/rigger/test_628.test
|
|
# description: Issue 628
|
|
# group: [rigger]
|
|
|
|
statement ok
|
|
PRAGMA enable_verification
|
|
|
|
# DROP column results in an assertion failure unique.index < base.columns.size()
|
|
statement ok
|
|
CREATE TABLE t0(c0 INT, c1 INT UNIQUE);
|
|
|
|
statement error
|
|
ALTER TABLE t0 DROP c1;
|
|
----
|
|
<REGEX>:Catalog Error.*Cannot drop column.*
|