Lines Matching refs:zEQP
9479 char *zEQP; /* Plan */
10506 sqlite3_free(p->zEQP);
10541 ** IdxStatement.zIdx and IdxStatement.zEQP with the results.
10597 pStmt->zEQP = idxAppendText(&rc, pStmt->zEQP, "%s\n", zDetail);
11379 if( pStmt ) zRet = pStmt->zEQP;
18191 const char *zEQP = sqlite3_expert_report(p, i, EXPERT_REPORT_PLAN);
18198 raw_printf(out, "%s\n", zEQP);
18324 char *zEQP;
18331 zEQP = sqlite3_mprintf("EXPLAIN QUERY PLAN %s", zStmtSql);
18332 shell_check_oom(zEQP);
18333 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
18346 sqlite3_free(zEQP);
18349 zEQP = sqlite3_mprintf("EXPLAIN %s", zStmtSql);
18350 shell_check_oom(zEQP);
18351 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
18359 sqlite3_free(zEQP);
20770 const char *zEQP = (const char*)sqlite3_column_text(pSql, 0);
20777 if( zEQP==0 ) continue;
20779 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);