Home | History | Annotate | Download | only in orig

Lines Matching full:zeqp

6032   char *zEQP;                     /* Plan */
6997 sqlite3_free(p->zEQP);
7032 ** IdxStatement.zIdx and IdxStatement.zEQP with the results.
7082 pStmt->zEQP = idxAppendText(&rc, pStmt->zEQP, "%d|%d|%d|%s\n",
7853 if( pStmt ) zRet = pStmt->zEQP;
9592 const char *zEQP = sqlite3_expert_report(p, i, EXPERT_REPORT_PLAN);
9599 raw_printf(out, "%s\n", zEQP);
9731 char *zEQP;
9738 zEQP = sqlite3_mprintf("EXPLAIN QUERY PLAN %s", zStmtSql);
9739 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
9749 sqlite3_free(zEQP);
9752 zEQP = sqlite3_mprintf("EXPLAIN %s", zStmtSql);
9753 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
9761 sqlite3_free(zEQP);
11488 const char *zEQP = (const char*)sqlite3_column_text(pSql, 0);
11495 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);