]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typo in test8.c. (CVS 3240)
authordanielk1977 <danielk1977@noemail.net>
Wed, 14 Jun 2006 10:47:03 +0000 (10:47 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Wed, 14 Jun 2006 10:47:03 +0000 (10:47 +0000)
FossilOrigin-Name: 75be7d4988a3618ea9e3c1b65d5c05380ec7d25d

manifest
manifest.uuid
src/test8.c

index 239f69edb0bd2cde6860a79676870602d0324d2a..8906cf8bb3699e57c48bdbbfe274b6ab88d652d1 100644 (file)
--- 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
index 791129558483fbaa6df2093c2603fc6c55ad9baf..473351891866cc50ab8262056046fc9a390c03cd 100644 (file)
@@ -1 +1 @@
-402a77c43d4e4dcd2e1197cfaaa2ed51249a1b8f
\ No newline at end of file
+75be7d4988a3618ea9e3c1b65d5c05380ec7d25d
\ No newline at end of file
index 0a700ff5d380424f55fa1a94c0f89cb4fe5ccc23..f2095b7ad7d7ad2d458e95d213711ab9819a2773 100644 (file)
@@ -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);