]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Add the SQLITE_OMIT_GET_TABLE compile-time flag. (CVS 2740)
authordrh <drh@noemail.net>
Wed, 5 Oct 2005 02:13:40 +0000 (02:13 +0000)
committerdrh <drh@noemail.net>
Wed, 5 Oct 2005 02:13:40 +0000 (02:13 +0000)
FossilOrigin-Name: 6d4bc8f83b228b3804fffcb17ac57e1f754fa9cd

manifest
manifest.uuid
src/table.c

index 77047bd76e55ce6d3fbf97716abe85fd7a15235f..14495ca57860d33601b3ef85a9aa7f982e501c77 100644 (file)
--- 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
index e69cb7111d5aba1598fb504c452a568a6762d11d..f6fbd20cb3d74a68074d3c1633a4bace849be745 100644 (file)
@@ -1 +1 @@
-385a08afefaf552db221ae8bd30ecc7e7c07ee5b
\ No newline at end of file
+6d4bc8f83b228b3804fffcb17ac57e1f754fa9cd
\ No newline at end of file
index d4ef2c8a78b2e9615fe59dde3dc9c53d31be112f..a04b822764755838dd15963ba5284bf36f846f3b 100644 (file)
@@ -20,6 +20,8 @@
 #include <string.h>
 #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