diff options
Diffstat (limited to 'src/include/connection.h')
-rw-r--r-- | src/include/connection.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/include/connection.h b/src/include/connection.h index 0273414f42e..61ef9e2391c 100644 --- a/src/include/connection.h +++ b/src/include/connection.h @@ -336,13 +336,12 @@ struct __wt_connection_impl { const char *stat_stamp; /* Statistics log entry timestamp */ uint64_t stat_usecs; /* Statistics log period */ -#define WT_CONN_LOG_ARCHIVE 0x01 /* Archive is enabled */ -#define WT_CONN_LOG_ENABLED 0x02 /* Logging is enabled */ -#define WT_CONN_LOG_EXISTED 0x04 /* Log files found */ -#define WT_CONN_LOG_PREALLOC 0x08 /* Pre-allocation is enabled */ -#define WT_CONN_LOG_RECOVER_DONE 0x10 /* Recovery completed */ -#define WT_CONN_LOG_RECOVER_ERR 0x20 /* Error if recovery required */ -#define WT_CONN_LOG_ZERO_FILL 0x40 /* Manually zero files */ +#define WT_CONN_LOG_ARCHIVE 0x01 /* Archive is enabled */ +#define WT_CONN_LOG_ENABLED 0x02 /* Logging is enabled */ +#define WT_CONN_LOG_EXISTED 0x04 /* Log files found */ +#define WT_CONN_LOG_RECOVER_DONE 0x08 /* Recovery completed */ +#define WT_CONN_LOG_RECOVER_ERR 0x10 /* Error if recovery required */ +#define WT_CONN_LOG_ZERO_FILL 0x20 /* Manually zero files */ uint32_t log_flags; /* Global logging configuration */ WT_CONDVAR *log_cond; /* Log server wait mutex */ WT_SESSION_IMPL *log_session; /* Log server session */ |