mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-10 01:02:56 +03:00
Fix typo in test8.c. (CVS 3240)
FossilOrigin-Name: 75be7d4988a3618ea9e3c1b65d5c05380ec7d25d
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Add\ssome\stests\sfor\ssqlite3_load_extension().\s(CVS\s3239)
|
C Fix\stypo\sin\stest8.c.\s(CVS\s3240)
|
||||||
D 2006-06-14T10:38:03
|
D 2006-06-14T10:47:04
|
||||||
F Makefile.in 200f6dc376ecfd9b01e5359c4e0c10c02f649b34
|
F Makefile.in 200f6dc376ecfd9b01e5359c4e0c10c02f649b34
|
||||||
F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
|
F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
|
||||||
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
|
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
|
||||||
@@ -84,7 +84,7 @@ F src/test4.c 8b784cd82de158a2317cb4ac4bc86f91ad315e25
|
|||||||
F src/test5.c 7162f8526affb771c4ed256826eee7bb9eca265f
|
F src/test5.c 7162f8526affb771c4ed256826eee7bb9eca265f
|
||||||
F src/test6.c 60a02961ceb7b3edc25f5dc5c1ac2556622a76de
|
F src/test6.c 60a02961ceb7b3edc25f5dc5c1ac2556622a76de
|
||||||
F src/test7.c 03fa8d787f6aebc6d1f72504d52f33013ad2c8e3
|
F src/test7.c 03fa8d787f6aebc6d1f72504d52f33013ad2c8e3
|
||||||
F src/test8.c 0ad60b5e5c1e5c219f39b190a404a34c9766422c
|
F src/test8.c cbf59c055ee5997e3296cb8b54fd654dffedc5be
|
||||||
F src/test_async.c e3deaedd4d86a56391b81808fde9e44fbd92f1d3
|
F src/test_async.c e3deaedd4d86a56391b81808fde9e44fbd92f1d3
|
||||||
F src/test_loadext.c 22065d601a18878e5542191001f0eaa5d77c0ed8
|
F src/test_loadext.c 22065d601a18878e5542191001f0eaa5d77c0ed8
|
||||||
F src/test_md5.c 6c42bc0a3c0b54be34623ff77a0eec32b2fa96e3
|
F src/test_md5.c 6c42bc0a3c0b54be34623ff77a0eec32b2fa96e3
|
||||||
@@ -366,7 +366,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
|
|||||||
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
|
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
|
||||||
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
|
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
|
||||||
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
|
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
|
||||||
P b4024c394d25e5a0abdb07be779ae41581834c42
|
P 402a77c43d4e4dcd2e1197cfaaa2ed51249a1b8f
|
||||||
R 961f649a82865eb21d2c12799e526db2
|
R 85ab82b2cd4cf7efd7ef1f8ff6fc6e7a
|
||||||
U danielk1977
|
U danielk1977
|
||||||
Z 72c502f9c1fb513a156342339f64fbd9
|
Z df06791bd553f74b590c885aa7f9bb9a
|
||||||
|
@@ -1 +1 @@
|
|||||||
402a77c43d4e4dcd2e1197cfaaa2ed51249a1b8f
|
75be7d4988a3618ea9e3c1b65d5c05380ec7d25d
|
@@ -13,7 +13,7 @@
|
|||||||
** is not included in the SQLite library. It is used for automated
|
** is not included in the SQLite library. It is used for automated
|
||||||
** testing of the SQLite library.
|
** 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 "sqliteInt.h"
|
||||||
#include "tcl.h"
|
#include "tcl.h"
|
||||||
@@ -445,12 +445,6 @@ static int echoBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
|
|||||||
pIdxInfo->orderByConsumed = 1;
|
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, "xBestIndex");;
|
||||||
appendToEchoModule(pVtab->interp, zQuery);
|
appendToEchoModule(pVtab->interp, zQuery);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user