Searched refs:pTest (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | shell.c | 27927 sqlite3_stmt *pTest = 0; in arCheckEntries() local 27932 shellPreparePrintf(pAr->db, &rc, &pTest, zSel, pAr->zSrcTable); in arCheckEntries() 27933 j = sqlite3_bind_parameter_index(pTest, "$name"); in arCheckEntries() 27940 sqlite3_bind_text(pTest, j, z, -1, SQLITE_STATIC); in arCheckEntries() 27941 if( SQLITE_ROW==sqlite3_step(pTest) ){ in arCheckEntries() 27944 shellReset(&rc, pTest); in arCheckEntries() 27950 shellFinalize(&rc, pTest); in arCheckEntries()
|
| H A D | sqlite3.c | 115784 Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 115806 pTest = &opCompare; 115815 assert( pTest!=0 ); 115818 pTest = aListelem[i].pExpr; 115821 testcase( pTest->op==TK_COLUMN ); 115822 sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 195179 Fts3Expr *pTest = p; 195181 assert( pTest->eType==FTSQUERY_NEAR || pTest->eType==FTSQUERY_PHRASE ); 195182 if( pTest->eType==FTSQUERY_NEAR ) pTest = pTest->pRight; 195183 assert( pTest->eType==FTSQUERY_PHRASE ); [all …]
|