mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-01 06:27:03 +03:00
All temp.sqlite_master to be used as an alias for sqlite_temp_master.
FossilOrigin-Name: 8d646905b830d5bb29092e103ac5cb499b3c7e5a
This commit is contained in:
@ -207,7 +207,7 @@ ifcapable tempdb {
|
||||
CREATE TEMP TRIGGER tst_trigger BEFORE INSERT ON aux.t4 BEGIN
|
||||
SELECT 'hello world';
|
||||
END;
|
||||
SELECT count(*) FROM sqlite_temp_master;
|
||||
SELECT count(*) FROM temp.sqlite_master;
|
||||
}
|
||||
} {1}
|
||||
do_test attach3-9.1 {
|
||||
@ -219,7 +219,7 @@ ifcapable tempdb {
|
||||
do_test attach3-9.2 {
|
||||
execsql {
|
||||
DROP TABLE aux.t4;
|
||||
SELECT count(*) FROM sqlite_temp_master;
|
||||
SELECT count(*) FROM temp.sqlite_master;
|
||||
}
|
||||
} {0}
|
||||
}
|
||||
|
Reference in New Issue
Block a user