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

@@ -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) */
/*