]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a compilation problem with SQLITE_OMIT_VIRTUAL_TABLE is defined. (CVS 5277)
authordanielk1977 <danielk1977@noemail.net>
Mon, 23 Jun 2008 13:57:21 +0000 (13:57 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Mon, 23 Jun 2008 13:57:21 +0000 (13:57 +0000)
FossilOrigin-Name: 0421c09967a191fb62338eb8b1bd766be42f61cc

manifest
manifest.uuid
src/vdbeaux.c

index 0636d554d6858eff4a89a066e4ae964dc8b1a876..8ba2d15dc70ca15adceb29219304bc122e636c24 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fixed\swrong\stype\sin\ssqlite3_create_collation16\sdeclaration\sand\sdefinition\s(UTF-16\sstring\shad\sbeen\spassed\sas\sconst\schar*\sinstead\sof\sconst\svoid*)\s(CVS\s5276)
-D 2008-06-23T11:23:14
+C Fix\sa\scompilation\sproblem\swith\sSQLITE_OMIT_VIRTUAL_TABLE\sis\sdefined.\s(CVS\s5277)
+D 2008-06-23T13:57:22
 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
 F Makefile.in ff6f90048555a0088f6a4b7406bed5e55a7c4eff
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -186,7 +186,7 @@ F src/vdbe.c 98d8d2f7a7f4624ee9fd76d53fea3b4a3d737dfa
 F src/vdbe.h 1246ace5511258b2192487581f23985bbc61b1be
 F src/vdbeInt.h 723fb796fc13346e01fb7269dcfe28f74006c5b3
 F src/vdbeapi.c a7c6b8db324cf7eccff32de871dea36aa305c994
-F src/vdbeaux.c eff4eed70cbf14c993df0eeacc28932853093a48
+F src/vdbeaux.c 3db1f037906cd0961b1f79771abc267b94bd8475
 F src/vdbeblob.c 9345f6dcd675fdcfdb537d2d2f487542d9ea136a
 F src/vdbefifo.c c46dae1194e4277bf007144d7e5b0c0b1c24f136
 F src/vdbemem.c a39a822e6ae61c4cab4a512df4a315888b206911
@@ -592,7 +592,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 3240446853a11f5a1e379d4841d0268873aad64d
-R f970ee678fe3aed9a204c3983662af24
-U mihailim
-Z b6d7eebf60befb977f1dcc7e76ee6cd8
+P 4215e3e5ae3376bd46e5e12eec14b8209c164830
+R a7197bc3eb534ff9475cd8e3b42c9ea6
+U danielk1977
+Z faf968a5b946d66e40b204ecac9020fa
index ab9cf91af0055318a12e71cdb55783bcd80d623d..0248795f64293416325b6d2c41397af0b7a29183 100644 (file)
@@ -1 +1 @@
-4215e3e5ae3376bd46e5e12eec14b8209c164830
\ No newline at end of file
+0421c09967a191fb62338eb8b1bd766be42f61cc
\ No newline at end of file
index a89a960e6d3ac32d1bd012bfb8f465abe8db6a75..c45e6708ecaab443f8ebe8c9d150d2054fecd378 100644 (file)
@@ -14,7 +14,7 @@
 ** to version 2.8.7, all this code was combined into the vdbe.c source file.
 ** But that file was getting too big so this subroutines were split out.
 **
-** $Id: vdbeaux.c,v 1.391 2008/06/22 12:37:58 drh Exp $
+** $Id: vdbeaux.c,v 1.392 2008/06/23 13:57:22 danielk1977 Exp $
 */
 #include "sqliteInt.h"
 #include <ctype.h>
@@ -275,8 +275,8 @@ static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){
 #ifndef SQLITE_OMIT_VIRTUALTABLE
     }else if( opcode==OP_VUpdate ){
       if( pOp->p2>nMaxArgs ) nMaxArgs = pOp->p2;
-    }
 #endif
+    }
     if( opcode==OP_Halt ){
       if( pOp->p1==SQLITE_CONSTRAINT && pOp->p2==OE_Abort ){
         doesStatementRollback = 1;