diff options
author | drh <drh@noemail.net> | 2017-07-28 01:53:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-07-28 01:53:32 +0000 |
commit | a66632d83a13a73ff406a8efd46e0092864b252c (patch) | |
tree | 9871442863fe6c09d5b05af49e6b2b797883ce45 /src | |
parent | 77b4f528fab48e28b179a351f2b478667063266b (diff) | |
download | sqlite-a66632d83a13a73ff406a8efd46e0092864b252c.tar.gz sqlite-a66632d83a13a73ff406a8efd46e0092864b252c.zip |
Add the SQLITE_ENABLE_BATCH_ATOMIC_WRITE macro to ctime.c
FossilOrigin-Name: 67bad7fb9b2fdb29b63308f22062444084dc28191a542e08076dc2e39caf6f62
Diffstat (limited to 'src')
-rw-r--r-- | src/ctime.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ctime.c b/src/ctime.c index ef2523a9b..e8f4e7f90 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -184,6 +184,9 @@ static const char * const sqlite3azCompileOpt[] = { #if SQLITE_ENABLE_ATOMIC_WRITE "ENABLE_ATOMIC_WRITE", #endif +#if SQLITE_ENABLE_BATCH_ATOMIC_WRITE + "ENABLE_BATCH_ATOMIC_WRITE", +#endif #if SQLITE_ENABLE_CEROD "ENABLE_CEROD", #endif |