15 lines
359 B
SQL
15 lines
359 B
SQL
# name: test/issues/rigger/test_589.test
|
|
# description: Issue 589
|
|
# group: [rigger]
|
|
|
|
statement ok
|
|
PRAGMA enable_verification
|
|
|
|
# Creating an index on rowid results in an internal error 'Failed to bind column reference'
|
|
statement ok
|
|
CREATE TABLE t0(c0 INT);
|
|
|
|
statement error
|
|
CREATE INDEX i0 ON t0(rowid, c0);
|
|
----
|
|
<REGEX>:Binder Error:.*cannot create an index.* |