Home
last modified time | relevance | path

Searched refs:temp1 (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dcallback.c489 Hash temp1; in sqlite3SchemaClear() local
496 temp1 = pSchema->tblHash; in sqlite3SchemaClear()
505 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){ in sqlite3SchemaClear()
509 sqlite3HashClear(&temp1); in sqlite3SchemaClear()
H A Dparse.y1090 Expr *temp1 = tokenExpr(pParse,TK_ID,X);
1092 A = sqlite3PExpr(pParse, TK_DOT, temp1, temp2);
1095 Expr *temp1 = tokenExpr(pParse,TK_ID,X);
1100 sqlite3RenameTokenRemap(pParse, 0, temp1);
1102 A = sqlite3PExpr(pParse, TK_DOT, temp1, temp4);
/sqlite-3.40.0/test/
H A Dtrustschema1.test51 CREATE TEMP TABLE temp1(a,b AS (f3(a+1)));
52 INSERT INTO temp1(a) VALUES(100),(900);
53 SELECT * FROM temp1;
H A Dtkt3630.test25 CREATE TEMP TABLE temp1(a,b,c);