Searched refs:temp2 (Results 1 – 4 of 4) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | tkt3630.test | 32 CREATE TEMP TABLE temp2 AS SELECT * FROM main1; 40 ALTER TABLE temp2 ADD COLUMN d; 41 ALTER TABLE temp2 RENAME TO temp2rn; 42 SELECT name FROM temp.sqlite_master WHERE name LIKE 'temp2%';
|
| H A D | trustschema1.test | 85 CREATE TEMP TABLE temp2(a, b, CHECK(f3(b)==b)); 86 INSERT INTO temp2(a,b) VALUES(1,2),('x','y'); 87 SELECT * FROM temp2;
|
| /sqlite-3.40.0/src/ |
| H A D | callback.c | 490 Hash temp2; in sqlite3SchemaClear() local 497 temp2 = pSchema->trigHash; in sqlite3SchemaClear() 500 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){ in sqlite3SchemaClear() 503 sqlite3HashClear(&temp2); in sqlite3SchemaClear()
|
| H A D | parse.y | 1091 Expr *temp2 = tokenExpr(pParse,TK_ID,Y); 1092 A = sqlite3PExpr(pParse, TK_DOT, temp1, temp2); 1096 Expr *temp2 = tokenExpr(pParse,TK_ID,Y); 1098 Expr *temp4 = sqlite3PExpr(pParse, TK_DOT, temp2, temp3);
|