1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Replace an erroneous SQLITE_OMIT_VIRTUAL_TABLE in vdbeaux.c with SQLITE_OMIT_WAL. Also fix some test script problems.

FossilOrigin-Name: ff8c3f7840a0a8d87453b94b9884ee26d5d92da5
This commit is contained in:
dan
2013-07-05 16:54:30 +00:00
parent b2cfc14670
commit d903154e3a
6 changed files with 39 additions and 32 deletions

View File

@@ -417,7 +417,7 @@ static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){
p->bIsReader = 1;
}else if( opcode==OP_Vacuum
|| opcode==OP_JournalMode
#ifndef SQLITE_OMIT_VIRTUALTABLE
#ifndef SQLITE_OMIT_WAL
|| opcode==OP_Checkpoint
#endif
){