Lines Matching defs:expert
9186 /************************* Begin ../ext/expert/sqlite3expert.h ******************/
9356 /************************* End ../ext/expert/sqlite3expert.h ********************/
9357 /************************* Begin ../ext/expert/sqlite3expert.c ******************/
10024 return sqlite3_create_module(p->dbv, "expert", &expertModule, (void*)p);
10799 "CREATE VIRTUAL TABLE %Q USING expert(%Q)", zName, zInner
11407 /************************* End ../ext/expert/sqlite3expert.c ********************/
15596 ExpertInfo expert; /* Valid if previous command was ".expert OPT..." */
18137 ** was ".expert". It passes the SQL in the second argument directly to
18150 assert( pState->expert.pExpert );
18152 return sqlite3_expert_sql(pState->expert.pExpert, zSql, pzErr);
18157 ** created by the ".expert" command (if bCancel==1), or to generate a
18171 sqlite3expert *p = pState->expert.pExpert;
18176 int bVerbose = pState->expert.bVerbose;
18203 pState->expert.pExpert = 0;
18208 ** Implementation of ".expert" dot command.
18220 assert( pState->expert.pExpert==0 );
18221 memset(&pState->expert, 0, sizeof(ExpertInfo));
18229 pState->expert.bVerbose = 1;
18250 pState->expert.pExpert = sqlite3_expert_new(pState->db, &zErr);
18251 if( pState->expert.pExpert==0 ){
18256 pState->expert.pExpert, EXPERT_CONFIG_SAMPLE, iSample
18291 if( pArg->expert.pExpert ){
18799 ".expert EXPERIMENTAL. Suggest indexes for queries",
22002 if( p->expert.pExpert ){
22555 if( c=='e' && cli_strncmp(azArg[0], "expert", n)==0 ){