aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2011-08-31 20:47:50 +0000
committerdrh <drh@noemail.net>2011-08-31 20:47:50 +0000
commit5a201fb41df348845f3db85a2d00e59e5d7a16c0 (patch)
tree4616360e7c3c6343bbaf7bb34a25502cf70fa4b9 /src
parent1b1e8a8be681b17388a98b5ba3af361e12415e58 (diff)
downloadsqlite-5a201fb41df348845f3db85a2d00e59e5d7a16c0.tar.gz
sqlite-5a201fb41df348845f3db85a2d00e59e5d7a16c0.zip
Add the SQLITE_MAX_SCHEMA_RETRY compile-time option to the set of options
understood by "PRAGMA compile_options;" and by the "sqlite_compileoption_used()" function. FossilOrigin-Name: 1b124af40a8fa4d3094f24a9213096b66411b8f9
Diffstat (limited to 'src')
-rw-r--r--src/ctime.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ctime.c b/src/ctime.c
index 77174d0da..cbf8ed55f 100644
--- a/src/ctime.c
+++ b/src/ctime.c
@@ -144,6 +144,9 @@ static const char * const azCompileOpt[] = {
#ifdef SQLITE_LOCK_TRACE
"LOCK_TRACE",
#endif
+#ifdef SQLITE_MAX_SCHEMA_RETRY
+ "MAX_SCHEMA_RETRY=" CTIMEOPT_VAL(SQLITE_MAX_SCHEMA_RETRY),
+#endif
#ifdef SQLITE_MEMDEBUG
"MEMDEBUG",
#endif