~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-11-24 06:05:26 UTC
  • Revision ID: brian@tangent.org-20081124060526-z02hwac02i5membk
Remove lock condition needed (we do row based replication, so... lock is
uninteresting for us).

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
bool server_id_supplied = 0;
268
268
bool opt_endinfo, using_udf_functions;
269
269
bool locked_in_memory;
270
 
bool opt_using_transactions, using_update_log;
 
270
bool opt_using_transactions;
271
271
bool volatile abort_loop;
272
272
bool volatile shutdown_in_progress;
273
273
bool opt_skip_slave_start = 0; ///< If set, slave is not autostarted
2190
2190
    {
2191
2191
      unireg_abort(1);
2192
2192
    }
2193
 
 
2194
 
    /*
2195
 
      Used to specify which type of lock we need to use for queries of type
2196
 
      INSERT ... SELECT. This will change when we have row level logging.
2197
 
    */
2198
 
    using_update_log=1;
2199
2193
  }
2200
2194
 
2201
2195
  /* call ha_init_key_cache() on all key caches to init them */
4010
4004
  thread_count= thread_running= wake_thread=0;
4011
4005
  slave_open_temp_tables= 0;
4012
4006
  opt_endinfo= using_udf_functions= 0;
4013
 
  opt_using_transactions= using_update_log= 0;
 
4007
  opt_using_transactions= false;
4014
4008
  abort_loop= select_thread_in_use= signal_thread_in_use= 0;
4015
4009
  ready_to_exit= shutdown_in_progress= 0;
4016
4010
  aborted_threads= aborted_connects= 0;