Lines Matching refs:temp
64 file tail [sqlite3_db_filename db temp]
157 ATTACH 'test.db' as temp;
159 } {1 {database temp is already in use}}
192 execsql {select * from temp.sqlite_master}
262 } {0 main 1 temp}
317 } {0 main 1 temp 2 db2}
345 } {0 main 1 temp 2 db2}
677 SELECT 'no-op' FROM temp.t6;
680 } {1 {trigger r5 cannot reference objects in database temp}}
686 SELECT 'no-op' || (SELECT * FROM temp.t6);
689 } {1 {trigger r5 cannot reference objects in database temp}}
693 SELECT 'no-op' FROM t1 WHERE x<(SELECT min(x) FROM temp.t6);
696 } {1 {trigger r5 cannot reference objects in database temp}}
700 SELECT 'no-op' FROM t1 GROUP BY 1 HAVING x<(SELECT min(x) FROM temp.t6);
703 } {1 {trigger r5 cannot reference objects in database temp}}
707 SELECT max(1,x,(SELECT min(x) FROM temp.t6)) FROM t1;
710 } {1 {trigger r5 cannot reference objects in database temp}}
714 INSERT INTO t1 VALUES((SELECT min(x) FROM temp.t6),5);
717 } {1 {trigger r5 cannot reference objects in database temp}}
721 DELETE FROM t1 WHERE x<(SELECT min(x) FROM temp.t6);
724 } {1 {trigger r5 cannot reference objects in database temp}}