1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-02 05:54:29 +03:00

Put the SQLITE_UNTESTABLE compile-time option in the correct order for

PRAGMA compile_options.

FossilOrigin-Name: 24574a15a336ffcb961334f84b56e9ab98490a79
This commit is contained in:
drh
2016-12-07 17:06:12 +00:00
parent d12602a9c5
commit 4ed8c83cfd
3 changed files with 10 additions and 10 deletions

View File

@@ -233,9 +233,6 @@ static const char * const azCompileOpt[] = {
#if SQLITE_OMIT_BTREECOUNT
"OMIT_BTREECOUNT",
#endif
#if SQLITE_UNTESTABLE
"UNTESTABLE"
#endif
#if SQLITE_OMIT_CAST
"OMIT_CAST",
#endif
@@ -398,6 +395,9 @@ static const char * const azCompileOpt[] = {
#if defined(SQLITE_THREADSAFE)
"THREADSAFE=" CTIMEOPT_VAL(SQLITE_THREADSAFE),
#endif
#if SQLITE_UNTESTABLE
"UNTESTABLE"
#endif
#if SQLITE_USE_ALLOCA
"USE_ALLOCA",
#endif