1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Remove the #ifdef SQLITE_DEBUG from around the testcase_glob() routine

in the command-line shell.

FossilOrigin-Name: 9885dac4b98693c4d2ed643022127f1452f19dc6
This commit is contained in:
drh
2016-09-16 18:53:42 +00:00
parent edc3537c61
commit 0882da8001
3 changed files with 8 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
C Fix\sa\sproblem\scausing\sincorrect\scode\sto\sbe\sgenerated\sfor\sIN\sconstraints\slike\s"a\sIN\s(1,\s2,\s3)"\swhere\scolumn\s"a"\sis\sa\srowid\scolumn\swith\san\sextra\sUNIQUE\sindex\screated\son\sit.\sTicket\s[0eab1ac759].
D 2016-09-16T16:30:57.249
C Remove\sthe\s#ifdef\sSQLITE_DEBUG\sfrom\saround\sthe\stestcase_glob()\sroutine\nin\sthe\scommand-line\sshell.
D 2016-09-16T18:53:42.407
F Makefile.in 6fd48ffcf7c2deea7499062d1f3747f986c19678
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
F Makefile.msc e1aa788e84f926e42239ee167c53f785bedacacd
@@ -387,7 +387,7 @@ F src/random.c ba2679f80ec82c4190062d756f22d0c358180696
F src/resolve.c 3c3cf0dc719cd2a32ab5c1e10c26481dd565492e
F src/rowset.c 7b7e7e479212e65b723bf40128c7b36dc5afdfac
F src/select.c 244f9cc5e4662987cd2ef5c22d1b7027560f3425
F src/shell.c ae7058efb5084b4b9576dc5485bb3d2870b1974a
F src/shell.c 6fbbb69f5377550b9c00932077c09fde86dad0f7
F src/sqlite.h.in 46ed821aeed0ba45559fb15597d9a400083154a2
F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
F src/sqlite3ext.h 8648034aa702469afb553231677306cc6492a1ae
@@ -1525,7 +1525,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P a49bc0a8244feb08b83e716d81c2a9512c184539
R 6f0469103fd0ee7eefefaa24af917500
U dan
Z 752f0595c26528c23b738c8e2fc1f9ad
P a92aee5520cfaf85ae896365a7e42bdd981f828d
R ee0cf31a4951ba6f76f2503b1e8b6ac4
U drh
Z 869e33134584b23a4d21c5bff81dceaf

View File

@@ -1 +1 @@
a92aee5520cfaf85ae896365a7e42bdd981f828d
9885dac4b98693c4d2ed643022127f1452f19dc6

View File

@@ -3085,7 +3085,6 @@ static int shellNomemError(void){
return 1;
}
#ifdef SQLITE_DEBUG
/*
** Compare the pattern in zGlob[] against the text in z[]. Return TRUE
** if they match and FALSE (0) if they do not match.
@@ -3182,7 +3181,6 @@ static int testcase_glob(const char *zGlob, const char *z){
while( IsSpace(*z) ){ z++; }
return *z==0;
}
#endif /* defined(SQLITE_DEBUG) */
/*