From: danielk1977 Date: Wed, 14 Jun 2006 10:47:03 +0000 (+0000) Subject: Fix typo in test8.c. (CVS 3240) X-Git-Tag: version-3.6.10~2927 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8ed652f8f2ccb338d3ba3ea5a9950385e811701;p=thirdparty%2Fsqlite.git Fix typo in test8.c. (CVS 3240) FossilOrigin-Name: 75be7d4988a3618ea9e3c1b65d5c05380ec7d25d --- diff --git a/manifest b/manifest index 239f69edb0..8906cf8bb3 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\ssome\stests\sfor\ssqlite3_load_extension().\s(CVS\s3239) -D 2006-06-14T10:38:03 +C Fix\stypo\sin\stest8.c.\s(CVS\s3240) +D 2006-06-14T10:47:04 F Makefile.in 200f6dc376ecfd9b01e5359c4e0c10c02f649b34 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -84,7 +84,7 @@ F src/test4.c 8b784cd82de158a2317cb4ac4bc86f91ad315e25 F src/test5.c 7162f8526affb771c4ed256826eee7bb9eca265f F src/test6.c 60a02961ceb7b3edc25f5dc5c1ac2556622a76de F src/test7.c 03fa8d787f6aebc6d1f72504d52f33013ad2c8e3 -F src/test8.c 0ad60b5e5c1e5c219f39b190a404a34c9766422c +F src/test8.c cbf59c055ee5997e3296cb8b54fd654dffedc5be F src/test_async.c e3deaedd4d86a56391b81808fde9e44fbd92f1d3 F src/test_loadext.c 22065d601a18878e5542191001f0eaa5d77c0ed8 F src/test_md5.c 6c42bc0a3c0b54be34623ff77a0eec32b2fa96e3 @@ -366,7 +366,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P b4024c394d25e5a0abdb07be779ae41581834c42 -R 961f649a82865eb21d2c12799e526db2 +P 402a77c43d4e4dcd2e1197cfaaa2ed51249a1b8f +R 85ab82b2cd4cf7efd7ef1f8ff6fc6e7a U danielk1977 -Z 72c502f9c1fb513a156342339f64fbd9 +Z df06791bd553f74b590c885aa7f9bb9a diff --git a/manifest.uuid b/manifest.uuid index 7911295584..4733518918 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -402a77c43d4e4dcd2e1197cfaaa2ed51249a1b8f \ No newline at end of file +75be7d4988a3618ea9e3c1b65d5c05380ec7d25d \ No newline at end of file diff --git a/src/test8.c b/src/test8.c index 0a700ff5d3..f2095b7ad7 100644 --- a/src/test8.c +++ b/src/test8.c @@ -13,7 +13,7 @@ ** is not included in the SQLite library. It is used for automated ** testing of the SQLite library. ** -** $Id: test8.c,v 1.14 2006/06/14 07:41:32 danielk1977 Exp $ +** $Id: test8.c,v 1.15 2006/06/14 10:47:04 danielk1977 Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -445,12 +445,6 @@ static int echoBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ pIdxInfo->orderByConsumed = 1; } - const int nOrderBy; /* Number of terms in the ORDER BY clause */ - const struct sqlite3_index_orderby { - int iColumn; /* Column number */ - unsigned char desc; /* True for DESC. False for ASC. */ - } *const aOrderBy; /* The ORDER BY clause */ - appendToEchoModule(pVtab->interp, "xBestIndex");; appendToEchoModule(pVtab->interp, zQuery);