mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +03:00
Experimental integration of schemalint functionality with the shell tool. Does not work yet.
FossilOrigin-Name: ed49f297bcee86674ed673e195610b8cc1d35647
This commit is contained in:
@@ -792,6 +792,13 @@ int sqlite3_db_config(sqlite3 *db, int op, ...){
|
||||
rc = setupLookaside(db, pBuf, sz, cnt);
|
||||
break;
|
||||
}
|
||||
#ifdef SQLITE_SCHEMA_LINT
|
||||
case SQLITE_DBCONFIG_WHEREINFO: {
|
||||
db->xWhereInfo = va_arg(ap, void(*)(void*, int, const char*, int, i64));
|
||||
db->pWhereInfoCtx = va_arg(ap, void*);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
default: {
|
||||
static const struct {
|
||||
int op; /* The opcode */
|
||||
|
Reference in New Issue
Block a user