~mordred/ubuntu/maverick/drizzle/prerelease

« back to all changes in this revision

Viewing changes to plugin/transaction_log/module.cc

  • Committer: Monty Taylor
  • Date: 2010-09-15 16:23:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1376.
  • Revision ID: mordred@inaugust.com-20100915162349-6rgszxuqytllu01m
Tags: upstream-2010.09.1764
ImportĀ upstreamĀ versionĀ 2010.09.1764

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 */