Lines Matching full:zeqp
6038 char *zEQP; /* Plan */
7003 sqlite3_free(p->zEQP);
7038 ** IdxStatement.zIdx and IdxStatement.zEQP with the results.
7088 pStmt->zEQP = idxAppendText(&rc, pStmt->zEQP, "%d|%d|%d|%s\n",
7859 if( pStmt ) zRet = pStmt->zEQP;
9598 const char *zEQP = sqlite3_expert_report(p, i, EXPERT_REPORT_PLAN);
9605 raw_printf(out, "%s\n", zEQP);
9737 char *zEQP;
9744 zEQP = sqlite3_mprintf("EXPLAIN QUERY PLAN %s", zStmtSql);
9745 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
9755 sqlite3_free(zEQP);
9758 zEQP = sqlite3_mprintf("EXPLAIN %s", zStmtSql);
9759 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
9767 sqlite3_free(zEQP);
11511 const char *zEQP = (const char*)sqlite3_column_text(pSql, 0);
11518 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);