Lines Matching refs:temp
47 INSERT INTO temp.t1 VALUES(1, 'temp one', X'0201');
48 INSERT INTO temp.t1 VALUES(2, 'temp two', X'0202');
49 INSERT INTO temp.t1 VALUES(3, 'temp three', X'0203');
50 INSERT INTO temp.t1 VALUES(4, 'temp four', X'0204');
51 INSERT INTO temp.t1 VALUES(5, 'temp five', X'0205');
53 INSERT INTO temp.x2 VALUES(1, 'x temp one', X'000201');
54 INSERT INTO temp.x2 VALUES(2, 'x temp two', X'000202');
55 INSERT INTO temp.x2 VALUES(3, 'x temp three', X'000203');
56 INSERT INTO temp.x2 VALUES(4, 'x temp four', X'000204');
57 INSERT INTO temp.x2 VALUES(5, 'x temp five', X'000205');
88 do_test 1.1.3 { read_blob temp t1 b 1 } "temp one"
89 do_test 1.1.4 { read_blob temp t1 c 1 } "\02\01"
95 do_test 1.2.3 { read_blob temp t1 b 4 } "temp four"
96 do_test 1.2.4 { read_blob temp t1 c 4 } "\02\04"
102 do_test 1.3.3 { read_blob temp x2 b 2 } "x temp two"
103 do_test 1.3.4 { read_blob temp x2 c 2 } "\00\02\02"
112 # database name is "main". For TEMP tables, the database name is "temp".