mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Disallow temporary indices on persistent tables. (CVS 1122)
FossilOrigin-Name: 72bf73b2c1e3594aa85920e47fc345bba56c80d0
This commit is contained in:
@ -60,7 +60,6 @@ foreach tbl_defn {
|
||||
{CREATE TABLE tbl (a, b PRIMARY KEY);}
|
||||
{CREATE TABLE tbl (a, b); CREATE INDEX tbl_idx ON tbl(b);}
|
||||
{CREATE TEMP TABLE tbl (a, b); CREATE INDEX tbl_idx ON tbl(b);}
|
||||
{CREATE TABLE tbl (a, b); CREATE TEMP INDEX tbl_idx ON tbl(b);}
|
||||
} {
|
||||
incr ii
|
||||
catchsql { DROP INDEX tbl_idx; }
|
||||
|
Reference in New Issue
Block a user