Lines Matching refs:zIdx
208818 char *zIdx;
208875 const char *zIdx; /* Name of target db index (or null) */
209466 if( pIter->zIdx==0 ){
209490 if( pIter->zIdx==0 ){
209499 pIter->zIdx = 0;
209501 pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0);
209504 rc = pIter->zIdx ? SQLITE_OK : SQLITE_NOMEM;
209824 const u8 *zIdx = sqlite3_column_text(aStmt[1], 1);
209825 if( zOrig && zIdx && zOrig[0]=='p' ){
209828 "SELECT rootpage FROM sqlite_schema WHERE name = %Q", zIdx
209880 const char *zIdx = (const char*)sqlite3_column_text(pList, 1);
209883 if( zIdx==0 ) break;
209888 sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx)
209938 if( pIter->zIdx==0 ) pIter->iTnum = iTnum;
210179 sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", pIter->zIdx)
210301 sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", pIter->zIdx)
210579 assert( pIter->zIdx==0 );
210591 const char *zIdx = (const char*)sqlite3_column_text(pXList,1);
210592 if( zIdx ){
210594 sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx)
210640 const char *zIdx = 0; /* Name of PK index */
210655 zIdx = (const char*)sqlite3_column_text(pQuery, 0);
210658 if( zIdx ){
210660 sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx)
210828 rc = sqlite3_bind_text(pStmt, 1, pIter->zIdx, -1, SQLITE_STATIC);
210924 const char *zIdx = pIter->zIdx;
210932 if( zIdx ){
211274 sqlite3_free(p->zIdx);
211317 pRet->zIdx = rbuStrndup((char*)sqlite3_column_text(pStmt, 1), &rc);
211943 assert( eType!=RBU_DELETE || pIter->zIdx==0 );
211967 && pIter->zIdx==0 && pIter->eType==RBU_PK_IPK && pIter->abTblPk[i]
211983 if( pIter->zIdx==0 ){
212029 assert( eType!=RBU_UPDATE || pIter->zIdx==0 );
212031 if( pIter->zIdx==0 && (eType==RBU_IDX_DELETE || eType==RBU_IDX_INSERT) ){
212035 if( pIter->zIdx==0 ){
212138 RBU_STATE_IDX, p->objiter.zIdx,
212400 || rbuStrCompare(pIter->zIdx, pState->zIdx)