1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Tighter binding of views, triggers, and indices to their respective

databases.  Ticket #323.  Much more testing needs to be done to the
sqliteFix...() routines in attach.c. (CVS 990)

FossilOrigin-Name: 7202d4f1a8853368954a967b7ccca9d8a6645a2e
This commit is contained in:
drh
2003-05-31 16:21:12 +00:00
parent 8372b8d134
commit f26e09c87f
13 changed files with 373 additions and 72 deletions

View File

@ -83,19 +83,19 @@ do_test trigger4-3.1 {
drop table test2;
insert into test values(7,8,9);
}
} {1 {no such table: test2}}
} {1 {no such table: main.test2}}
do_test trigger4-3.2 {
db close
sqlite db test.db
catchsql {
insert into test values(7,8,9);
}
} {1 {no such table: test2}}
} {1 {no such table: main.test2}}
do_test trigger4-3.3 {
catchsql {
update test set a=222 where id=1;
}
} {1 {no such table: test2}}
} {1 {no such table: main.test2}}
do_test trigger4-3.4 {
execsql {
select * from test1;