Commit 5cd4cb4a authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

control tokudb logging with the DB_INIT_LOG flag. closes #807

git-svn-id: file:///svn/mysql/tokudb-engine/src@4019 c7de825b-a66e-492c-adef-691d508d4ae1
parent 97063651
...@@ -124,11 +124,10 @@ const char *ha_tokudb_ext = ".tokudb"; ...@@ -124,11 +124,10 @@ const char *ha_tokudb_ext = ".tokudb";
static u_int32_t tokudb_init_flags = static u_int32_t tokudb_init_flags =
DB_CREATE | DB_THREAD | DB_PRIVATE | DB_CREATE | DB_THREAD | DB_PRIVATE |
DB_INIT_LOCK | DB_INIT_LOCK |
DB_INIT_LOG |
DB_INIT_MPOOL | DB_INIT_MPOOL |
DB_INIT_TXN | DB_INIT_TXN |
DB_INIT_LOG | 0 | // disabled for 1.0.2 DB_INIT_LOG |
0; // disabled for 1.0.1 DB_RECOVER; 0; // disabled for 1.0.1 DB_RECOVER;
static u_int32_t tokudb_env_flags = DB_LOG_AUTOREMOVE; static u_int32_t tokudb_env_flags = DB_LOG_AUTOREMOVE;
//static u_int32_t tokudb_lock_type = DB_LOCK_DEFAULT; //static u_int32_t tokudb_lock_type = DB_LOCK_DEFAULT;
//static ulong tokudb_log_buffer_size = 0; //static ulong tokudb_log_buffer_size = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment