1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-31 18:11:01 +03:00

Add the stmts virtual table to testfixture builds. Add new compile-time

options SQLITE_ENABLE_QPSG and SQLITE_ENABLE_STMTSVTAB to ctime.c

FossilOrigin-Name: 60c628293a1d8a1505e1a36dbd01b1f62bcfd7915e144044c92385423cbf8e07
This commit is contained in:
drh
2017-06-29 13:41:59 +00:00
parent 2ca62cb102
commit c79983312f
7 changed files with 27 additions and 12 deletions

View File

@@ -265,6 +265,9 @@ static const char * const sqlite3azCompileOpt[] = {
#if SQLITE_ENABLE_PREUPDATE_HOOK
"ENABLE_PREUPDATE_HOOK",
#endif
#if SQLITE_ENABLE_QPSG
"ENABLE_QPSG",
#endif
#if SQLITE_ENABLE_RBU
"ENABLE_RBU",
#endif
@@ -288,6 +291,9 @@ static const char * const sqlite3azCompileOpt[] = {
#elif defined(SQLITE_ENABLE_STAT3)
"ENABLE_STAT3",
#endif
#if SQLITE_ENABLE_STMTSVTAB
"ENABLE_STMTSVTAB",
#endif
#if SQLITE_ENABLE_STMT_SCANSTATUS
"ENABLE_STMT_SCANSTATUS",
#endif