Lines Matching refs:T
186 create_table ::= createkw temp(T) TABLE ifnotexists(E) nm(Y) dbnm(Z). { in temp() argument
187 sqlite3StartTable(pParse,&Y,&Z,T,0,0,E); in temp()
388 ccons ::= REFERENCES nm(T) eidlist_opt(TA) refargs(R). in nm() argument
389 {sqlite3CreateForeignKey(pParse,0,&T,TA,R);} in nm()
444 REFERENCES nm(T) eidlist_opt(TA) refargs(R) defer_subclause_opt(D). {
445 sqlite3CreateForeignKey(pParse, FA, &T, TA, R);
478 cmd ::= createkw(X) temp(T) VIEW ifnotexists(E) nm(Y) dbnm(Z) eidlist_opt(C)
480 sqlite3CreateView(pParse, &X, &Y, &Z, C, S, T, E);
1010 upsert(A) ::= ON CONFLICT LP sortlist(T) RP where_opt(TW)
1012 { A = sqlite3UpsertNew(pParse->db,T,TW,Z,W,N);}
1013 upsert(A) ::= ON CONFLICT LP sortlist(T) RP where_opt(TW) DO NOTHING upsert(N).
1014 { A = sqlite3UpsertNew(pParse->db,T,TW,0,0,N); }
1134 expr(A) ::= CAST LP expr(E) AS typetoken(T) RP. {
1135 A = sqlite3ExprAlloc(pParse->db, TK_CAST, &T, 1);
1523 trigger_decl(A) ::= temp(T) TRIGGER ifnotexists(NOERR) nm(B) dbnm(Z)
1526 sqlite3BeginTrigger(pParse, &B, &Z, C, D.a, D.b, E, G, T, NOERR);
1619 expr(A) ::= RAISE LP raisetype(T) COMMA nm(Z) RP. {
1622 A->affExpr = (char)T;