~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/module.cc

  • Committer: lbieber
  • Date: 2010-08-31 22:33:15 UTC
  • mfrom: (1742.1.1 build)
  • Revision ID: lbieber@orisndriz03-20100831223315-05wf8qbxh8gbedhq
Merge Joe - fix bug 499596 - transaction_log plugin enable/disable sysvar does not work in call cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
/** 
57
57
 * Transaction Log plugin system variable - Is the log enabled? Only used on init().  
58
 
 * The enable() and disable() methods of the TransactionLog class control online
59
 
 * disabling.
60
58
 */
61
59
static bool sysvar_transaction_log_enabled= false;
62
60
/** Transaction Log plugin system variable - The path to the log file used */
283
281
 
284
282
static DRIZZLE_SYSVAR_BOOL(enable,
285
283
                           sysvar_transaction_log_enabled,
286
 
                           PLUGIN_VAR_NOCMDARG,
 
284
                           PLUGIN_VAR_NOCMDARG | PLUGIN_VAR_READONLY,
287
285
                           N_("Enable transaction log"),
288
286
                           NULL, /* check func */
289
287
                           NULL, /* update func */