1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Add the SQLITE_OMIT_GET_TABLE compile-time flag. (CVS 2740)

FossilOrigin-Name: 6d4bc8f83b228b3804fffcb17ac57e1f754fa9cd
This commit is contained in:
drh
2005-10-05 02:13:40 +00:00
parent af6edf5534
commit ff55c3585c
3 changed files with 11 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
C Automatically\scheck\sfor\sthe\sfdatasync()\sfunction\sand\sreplace\sit\swith\sfsync()\nif\snot\sfound.\s(CVS\s2739) C Add\sthe\sSQLITE_OMIT_GET_TABLE\scompile-time\sflag.\s(CVS\s2740)
D 2005-10-04T18:38:50 D 2005-10-05T02:13:41
F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1 F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -68,7 +68,7 @@ F src/select.c 034c7f7447b8711f85bef578a437ea12ca7cac53
F src/shell.c 3596c1e559b82663057940d19ba533ad421c7dd3 F src/shell.c 3596c1e559b82663057940d19ba533ad421c7dd3
F src/sqlite.h.in 461b2535550cf77aedfd44385da11ef7d63e57a2 F src/sqlite.h.in 461b2535550cf77aedfd44385da11ef7d63e57a2
F src/sqliteInt.h 53daa72541b4336c5e89773cf39717ed695bd523 F src/sqliteInt.h 53daa72541b4336c5e89773cf39717ed695bd523
F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9 F src/table.c abc7b6946a2c2ee0603f067f8210ed004ea9a9ac
F src/tclsqlite.c ac94682f9e601dd373912c46414a5a842db2089a F src/tclsqlite.c ac94682f9e601dd373912c46414a5a842db2089a
F src/test1.c 0f1a66f65a54fba029f7e93b7500d49443dc959b F src/test1.c 0f1a66f65a54fba029f7e93b7500d49443dc959b
F src/test2.c 4196848c845626e7df894470f27329e80bfe92aa F src/test2.c 4196848c845626e7df894470f27329e80bfe92aa
@@ -314,7 +314,7 @@ F www/tclsqlite.tcl ddcf912ea48695603c8ed7efb29f0812ef8d1b49
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
P 080eadca582a49a069a76ed113ec15e9bce2955a P 385a08afefaf552db221ae8bd30ecc7e7c07ee5b
R 3ecbcfe5901c6c8a7b3f81a3f1da8baf R 2ecda0d10d1a481ae25122b53decdec9
U drh U drh
Z a7dbf64f356a2c1f918f1d5112d2dd39 Z 95a343ba23b58fd399ed48f71453c638

View File

@@ -1 +1 @@
385a08afefaf552db221ae8bd30ecc7e7c07ee5b 6d4bc8f83b228b3804fffcb17ac57e1f754fa9cd

View File

@@ -20,6 +20,8 @@
#include <string.h> #include <string.h>
#include "sqliteInt.h" #include "sqliteInt.h"
#ifndef SQLITE_OMIT_GET_TABLE
/* /*
** This structure is used to pass data from sqlite3_get_table() through ** This structure is used to pass data from sqlite3_get_table() through
** to the callback function is uses to build the result. ** to the callback function is uses to build the result.
@@ -193,3 +195,5 @@ void sqlite3_free_table(
free(azResult); free(azResult);
} }
} }
#endif SQLITE_OMIT_GET_TABLE