Lines Matching refs:zEQP
3787 const char *zEQP = sqlite3_expert_report(p, i, EXPERT_REPORT_PLAN); local
3794 raw_printf(out, "%s\n", zEQP);
3920 char *zEQP; local
3927 zEQP = sqlite3_mprintf("EXPLAIN QUERY PLAN %s", zStmtSql);
3928 shell_check_oom(zEQP);
3929 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
3942 sqlite3_free(zEQP);
3945 zEQP = sqlite3_mprintf("EXPLAIN %s", zStmtSql);
3946 shell_check_oom(zEQP);
3947 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);
3955 sqlite3_free(zEQP);
6366 const char *zEQP = (const char*)sqlite3_column_text(pSql, 0); local
6373 if( zEQP==0 ) continue;
6375 rc = sqlite3_prepare_v2(db, zEQP, -1, &pExplain, 0);