1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +03:00

Fix a bug introduced by (5519) causing builds with SQLITE_OMIT_VIRTUALTABLE to malfunction. (CVS 5525)

FossilOrigin-Name: 761e73ceab77f965d58546ecf493f65cf52456fc
This commit is contained in:
danielk1977
2008-08-02 15:32:39 +00:00
parent 5a114caddf
commit 9dbee7dc1c
3 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
C Increase\sthe\sref-count\son\sthe\ssqlite3_vtab\sstructure\sbefore\scalling\seither\sthe\sxNext\sor\sxFilter\smethods.\s(CVS\s5524) C Fix\sa\sbug\sintroduced\sby\s(5519)\scausing\sbuilds\swith\sSQLITE_OMIT_VIRTUALTABLE\sto\smalfunction.\s(CVS\s5525)
D 2008-08-02T15:10:09 D 2008-08-02T15:32:40
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in bbb62eecc851379aef5a48a1bf8787eb13e6ec06 F Makefile.in bbb62eecc851379aef5a48a1bf8787eb13e6ec06
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -146,7 +146,7 @@ F src/select.c 23106fd9a9618a832abaf5dc906c79dc21755edc
F src/shell.c 4b835fe734304ac22a3385868cd3790c1e4f7aa1 F src/shell.c 4b835fe734304ac22a3385868cd3790c1e4f7aa1
F src/sqlite.h.in 30af3a002a0b672aaae8f4a5deb0a2e9a4b699af F src/sqlite.h.in 30af3a002a0b672aaae8f4a5deb0a2e9a4b699af
F src/sqlite3ext.h 1e3887c9bd3ae66cb599e922824b04cd0d0f2c3e F src/sqlite3ext.h 1e3887c9bd3ae66cb599e922824b04cd0d0f2c3e
F src/sqliteInt.h 4c3a19206bacfab8650f2616bc0004c1dea7fbf3 F src/sqliteInt.h 8bd67fa1beb4eb67f9c543f1f27bd454bbca9fb4
F src/sqliteLimit.h f435e728c6b620ef7312814d660a81f9356eb5c8 F src/sqliteLimit.h f435e728c6b620ef7312814d660a81f9356eb5c8
F src/status.c 8ad1f215934c5f5afb91df86e44dccff7ef3c1d0 F src/status.c 8ad1f215934c5f5afb91df86e44dccff7ef3c1d0
F src/table.c 22744786199c9195720c15a7a42cb97b2e2728d8 F src/table.c 22744786199c9195720c15a7a42cb97b2e2728d8
@@ -617,7 +617,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1 F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
P f1e44eb323f05495cbae25113aebcc50d16b40df P 6e41455f2c7ee57c60578541040631b899e1481f
R 4025f2f9c936b96cf13e66989019ddc4 R 64bcb91d2e65178562a0c2ac681cf755
U danielk1977 U danielk1977
Z 390cd1c9dbb285f76023a2fbf1f44c44 Z 4436b1d6c098cf208dd2f40f4e63d6d7

View File

@@ -1 +1 @@
6e41455f2c7ee57c60578541040631b899e1481f 761e73ceab77f965d58546ecf493f65cf52456fc

View File

@@ -11,7 +11,7 @@
************************************************************************* *************************************************************************
** Internal interface definitions for SQLite. ** Internal interface definitions for SQLite.
** **
** @(#) $Id: sqliteInt.h,v 1.750 2008/08/02 03:50:39 drh Exp $ ** @(#) $Id: sqliteInt.h,v 1.751 2008/08/02 15:32:40 danielk1977 Exp $
*/ */
#ifndef _SQLITEINT_H_ #ifndef _SQLITEINT_H_
#define _SQLITEINT_H_ #define _SQLITEINT_H_
@@ -2261,7 +2261,7 @@ int sqlite3AutoLoadExtensions(sqlite3*);
#ifdef SQLITE_OMIT_VIRTUALTABLE #ifdef SQLITE_OMIT_VIRTUALTABLE
# define sqlite3VtabClear(X) # define sqlite3VtabClear(X)
# define sqlite3VtabSync(X,Y) (Y) # define sqlite3VtabSync(X,Y) SQLITE_OK
# define sqlite3VtabRollback(X) # define sqlite3VtabRollback(X)
# define sqlite3VtabCommit(X) # define sqlite3VtabCommit(X)
#else #else