Home
last modified time | relevance | path

Searched refs:sqlite3_vtab_nochange (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/src/
H A Dloadext.c436 sqlite3_vtab_nochange,
H A Dsqlite3ext.h629 #define sqlite3_vtab_nochange sqlite3_api->vtab_nochange macro
H A Dvdbeapi.c876 int sqlite3_vtab_nochange(sqlite3_context *p){ in sqlite3_vtab_nochange() function
H A Dsqlite.h.in5561 ** because it queried [sqlite3_vtab_nochange()] and found that the column
9565 ** If the sqlite3_vtab_nochange(X) routine is called within the [xColumn]
9573 ** If the [xColumn] method calls sqlite3_vtab_nochange() and finds that
9580 ** The sqlite3_vtab_nochange() routine is an optimization. Virtual table
9582 ** sqlite3_vtab_nochange() interface were to always return false. In the
9583 ** current implementation, the sqlite3_vtab_nochange() interface does always
9586 int sqlite3_vtab_nochange(sqlite3_context*);
/sqlite-3.40.0/ext/misc/
H A Dzipfile.c1055 if( sqlite3_vtab_nochange(ctx)==0 ){ in zipfileColumn()
1061 if( sqlite3_vtab_nochange(ctx) ) break; in zipfileColumn()
/sqlite-3.40.0/ext/rtree/
H A Dgeopoly.c1534 if( i==0 && sqlite3_vtab_nochange(ctx) ) return SQLITE_OK; in geopolyColumn()