Searched refs:pIdxSelect (Results 1 – 1 of 1) sorted by relevance
250457 sqlite3_stmt *pIdxSelect; member252758 if( p->pIdxSelect==0 ){252760 fts5IndexPrepareStmt(p, &p->pIdxSelect, sqlite3_mprintf(252766 return p->pIdxSelect;252786 sqlite3_stmt *pIdxSelect = 0; local252795 pIdxSelect = fts5IdxSelectStmt(p);252797 sqlite3_bind_int(pIdxSelect, 1, pSeg->iSegid);252798 sqlite3_bind_blob(pIdxSelect, 2, pTerm, nTerm, SQLITE_STATIC);252799 if( SQLITE_ROW==sqlite3_step(pIdxSelect) ){252800 i64 val = sqlite3_column_int(pIdxSelect, 0);[all …]