~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-11-22 23:34:06 UTC
  • Revision ID: brian@tangent.org-20081122233406-fj063eeoy2dxvdmh
Removing more options around changing replication

Show diffs side-by-side

added added

removed removed

Lines of Context:
299
299
bool opt_noacl;
300
300
 
301
301
ulong opt_binlog_rows_event_max_size;
302
 
uint32_t opt_binlog_format_id= (uint32_t) BINLOG_FORMAT_ROW;
303
302
#ifdef HAVE_INITGROUPS
304
303
static bool calling_initgroups= false; /**< Used in SIGSEGV handler. */
305
304
#endif
2154
2153
    unireg_abort(1);
2155
2154
  }
2156
2155
 
2157
 
  global_system_variables.binlog_format= BINLOG_FORMAT_ROW;
2158
 
 
2159
2156
  if (opt_log_slave_updates && replicate_same_server_id)
2160
2157
  {
2161
2158
    sql_print_error(_("using --replicate-same-server-id in conjunction with "
4092
4089
  global_system_variables.max_join_size= (uint64_t) HA_POS_ERROR;
4093
4090
  max_system_variables.max_join_size=   (uint64_t) HA_POS_ERROR;
4094
4091
  global_system_variables.old_alter_table= 0;
4095
 
  global_system_variables.binlog_format= BINLOG_FORMAT_ROW;
4096
4092
  /*
4097
4093
    Default behavior for 4.1 and 5.0 is to treat NULL values as unequal
4098
4094
    when collecting index statistics for MyISAM tables.