Lines Matching refs:sqlite3_vtab_nochange
5884 ** because it queried [sqlite3_vtab_nochange()] and found that the column
9947 ** If the sqlite3_vtab_nochange(X) routine is called within the [xColumn]
9955 ** If the [xColumn] method calls sqlite3_vtab_nochange() and finds that
9962 ** The sqlite3_vtab_nochange() routine is an optimization. Virtual table
9964 ** sqlite3_vtab_nochange() interface were to always return false. In the
9965 ** current implementation, the sqlite3_vtab_nochange() interface does always
9968 SQLITE_API int sqlite3_vtab_nochange(sqlite3_context*);
88777 SQLITE_API int sqlite3_vtab_nochange(sqlite3_context *p){
98491 ** value is OPFLAG_NOCHNG. This will cause the sqlite3_vtab_nochange()
132558 #define sqlite3_vtab_nochange sqlite3_api->vtab_nochange
133063 sqlite3_vtab_nochange,
149111 sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG);/* For sqlite3_vtab_nochange() */
206884 if( i==0 && sqlite3_vtab_nochange(ctx) ) return SQLITE_OK;