mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix a typo in the help message for kvtest.
FossilOrigin-Name: 8971d98f25a4f5fb060db8ed6a4b06f083122a50
This commit is contained in:
12
manifest
12
manifest
@ -1,5 +1,5 @@
|
|||||||
C Add\soption\s"--stats"\sto\stest\sprogram\skvtest.\sSpecifying\s--stats\scauses\skvtest\nto\soutput\sinformation\ssimilar\sto\sthe\sshell\stool\soption\sof\sthe\ssame\sname.
|
C Fix\sa\stypo\sin\sthe\shelp\smessage\sfor\skvtest.
|
||||||
D 2017-01-20T16:46:20.421
|
D 2017-01-20T16:47:34.130
|
||||||
F Makefile.in 41bd4cad981487345c4a84081074bcdb876e4b2e
|
F Makefile.in 41bd4cad981487345c4a84081074bcdb876e4b2e
|
||||||
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
|
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
|
||||||
F Makefile.msc b8ca53350ae545e3562403d5da2a69cec79308da
|
F Makefile.msc b8ca53350ae545e3562403d5da2a69cec79308da
|
||||||
@ -898,7 +898,7 @@ F test/json101.test c0897616f32d95431f37fd291cb78742181980ac
|
|||||||
F test/json102.test bf3fe7a706d30936a76a0f7a0375e1e8e73aff5a
|
F test/json102.test bf3fe7a706d30936a76a0f7a0375e1e8e73aff5a
|
||||||
F test/json103.test c5f6b85e69de05f6b3195f9f9d5ce9cd179099a0
|
F test/json103.test c5f6b85e69de05f6b3195f9f9d5ce9cd179099a0
|
||||||
F test/keyword1.test 37ef6bba5d2ed5b07ecdd6810571de2956599dff
|
F test/keyword1.test 37ef6bba5d2ed5b07ecdd6810571de2956599dff
|
||||||
F test/kvtest.c da3fddb003221d3d9726afd959d9c6017516fd02
|
F test/kvtest.c 371a2a0cb05840ed4a31c65c1d12a554c2fe556b
|
||||||
F test/lastinsert.test 42e948fd6442f07d60acbd15d33fb86473e0ef63
|
F test/lastinsert.test 42e948fd6442f07d60acbd15d33fb86473e0ef63
|
||||||
F test/laststmtchanges.test ae613f53819206b3222771828d024154d51db200
|
F test/laststmtchanges.test ae613f53819206b3222771828d024154d51db200
|
||||||
F test/like.test 0603f4fa0dad50987f70032c05800cbfa8985302
|
F test/like.test 0603f4fa0dad50987f70032c05800cbfa8985302
|
||||||
@ -1547,7 +1547,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
|
|||||||
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
|
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
|
||||||
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
|
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
|
||||||
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
|
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
|
||||||
P 87b640c8d07a76b2bc7e896e01965cc09e06f77b
|
P 90291327fc127671d9847a4a2ce1ed47a408cfc6
|
||||||
R b9affb78955ec88bf34da37dcc1dd9ef
|
R a902108b38beec2205eaeba771709e26
|
||||||
U dan
|
U dan
|
||||||
Z 3096b993434f8157eb2ffff3d1e5a264
|
Z 09bc78c7c0c7ebb44e280cf03b306ae8
|
||||||
|
@ -1 +1 @@
|
|||||||
90291327fc127671d9847a4a2ce1ed47a408cfc6
|
8971d98f25a4f5fb060db8ed6a4b06f083122a50
|
@ -61,20 +61,20 @@
|
|||||||
** ./kvtest run x1 --count 10000 --max-id 1000000
|
** ./kvtest run x1 --count 10000 --max-id 1000000
|
||||||
*/
|
*/
|
||||||
static const char zHelp[] =
|
static const char zHelp[] =
|
||||||
"Usage: kvhelp COMMAND ARGS...\n"
|
"Usage: kvtest COMMAND ARGS...\n"
|
||||||
"\n"
|
"\n"
|
||||||
" kvhelp init DBFILE --count N --size M --pagesize X\n"
|
" kvtest init DBFILE --count N --size M --pagesize X\n"
|
||||||
"\n"
|
"\n"
|
||||||
" Generate a new test database file named DBFILE containing N\n"
|
" Generate a new test database file named DBFILE containing N\n"
|
||||||
" BLOBs each of size M bytes. The page size of the new database\n"
|
" BLOBs each of size M bytes. The page size of the new database\n"
|
||||||
" file will be X\n"
|
" file will be X\n"
|
||||||
"\n"
|
"\n"
|
||||||
" kvhelp export DBFILE DIRECTORY\n"
|
" kvtest export DBFILE DIRECTORY\n"
|
||||||
"\n"
|
"\n"
|
||||||
" Export all the blobs in the kv table of DBFILE into separate\n"
|
" Export all the blobs in the kv table of DBFILE into separate\n"
|
||||||
" files in DIRECTORY.\n"
|
" files in DIRECTORY.\n"
|
||||||
"\n"
|
"\n"
|
||||||
" kvhelp run DBFILE [options]\n"
|
" kvtest run DBFILE [options]\n"
|
||||||
"\n"
|
"\n"
|
||||||
" Run a performance test. DBFILE can be either the name of a\n"
|
" Run a performance test. DBFILE can be either the name of a\n"
|
||||||
" database or a directory containing sample files. Options:\n"
|
" database or a directory containing sample files. Options:\n"
|
||||||
|
Reference in New Issue
Block a user