From: drh Date: Wed, 5 Oct 2005 02:13:40 +0000 (+0000) Subject: Add the SQLITE_OMIT_GET_TABLE compile-time flag. (CVS 2740) X-Git-Tag: version-3.6.10~3420 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff55c3585ce23693b95130a2b62e303aaf53148e;p=thirdparty%2Fsqlite.git Add the SQLITE_OMIT_GET_TABLE compile-time flag. (CVS 2740) FossilOrigin-Name: 6d4bc8f83b228b3804fffcb17ac57e1f754fa9cd --- diff --git a/manifest b/manifest index 77047bd76e..14495ca578 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Automatically\scheck\sfor\sthe\sfdatasync()\sfunction\sand\sreplace\sit\swith\sfsync()\nif\snot\sfound.\s(CVS\s2739) -D 2005-10-04T18:38:50 +C Add\sthe\sSQLITE_OMIT_GET_TABLE\scompile-time\sflag.\s(CVS\s2740) +D 2005-10-05T02:13:41 F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -68,7 +68,7 @@ F src/select.c 034c7f7447b8711f85bef578a437ea12ca7cac53 F src/shell.c 3596c1e559b82663057940d19ba533ad421c7dd3 F src/sqlite.h.in 461b2535550cf77aedfd44385da11ef7d63e57a2 F src/sqliteInt.h 53daa72541b4336c5e89773cf39717ed695bd523 -F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9 +F src/table.c abc7b6946a2c2ee0603f067f8210ed004ea9a9ac F src/tclsqlite.c ac94682f9e601dd373912c46414a5a842db2089a F src/test1.c 0f1a66f65a54fba029f7e93b7500d49443dc959b F src/test2.c 4196848c845626e7df894470f27329e80bfe92aa @@ -314,7 +314,7 @@ F www/tclsqlite.tcl ddcf912ea48695603c8ed7efb29f0812ef8d1b49 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P 080eadca582a49a069a76ed113ec15e9bce2955a -R 3ecbcfe5901c6c8a7b3f81a3f1da8baf +P 385a08afefaf552db221ae8bd30ecc7e7c07ee5b +R 2ecda0d10d1a481ae25122b53decdec9 U drh -Z a7dbf64f356a2c1f918f1d5112d2dd39 +Z 95a343ba23b58fd399ed48f71453c638 diff --git a/manifest.uuid b/manifest.uuid index e69cb7111d..f6fbd20cb3 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -385a08afefaf552db221ae8bd30ecc7e7c07ee5b \ No newline at end of file +6d4bc8f83b228b3804fffcb17ac57e1f754fa9cd \ No newline at end of file diff --git a/src/table.c b/src/table.c index d4ef2c8a78..a04b822764 100644 --- a/src/table.c +++ b/src/table.c @@ -20,6 +20,8 @@ #include #include "sqliteInt.h" +#ifndef SQLITE_OMIT_GET_TABLE + /* ** This structure is used to pass data from sqlite3_get_table() through ** to the callback function is uses to build the result. @@ -193,3 +195,5 @@ void sqlite3_free_table( free(azResult); } } + +#endif SQLITE_OMIT_GET_TABLE