~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-08-11 04:55:59 UTC
  • Revision ID: brian@tangent.org-20080811045559-azgfc343y0igyzsz
ulong cleanup, remove log code from myisam.

Show diffs side-by-side

added added

removed removed

Lines of Context:
457
457
#ifdef HAVE_STACK_TRACE_ON_SEGV
458
458
static bool opt_do_pstack;
459
459
#endif /* HAVE_STACK_TRACE_ON_SEGV */
460
 
static bool opt_myisam_log;
461
460
static int cleanup_done;
462
461
static ulong opt_specialflag, opt_myisam_block_size;
463
462
static char *opt_binlog_index_name;
2541
2540
      mysql_bin_log.purge_logs_before_date(purge_time);
2542
2541
  }
2543
2542
 
2544
 
  if (opt_myisam_log)
2545
 
    (void) mi_log(1);
2546
 
 
2547
2543
#if defined(HAVE_MLOCKALL) && defined(MCL_CURRENT)
2548
2544
  if (locked_in_memory && !getuid())
2549
2545
  {
4212
4208
  opt_tc_log_file= (char *)"tc.log";      // no hostname in tc_log file name !
4213
4209
  opt_secure_auth= 0;
4214
4210
  opt_secure_file_priv= 0;
4215
 
  opt_myisam_log= 0;
4216
4211
  segfaulted= kill_in_progress= 0;
4217
4212
  cleanup_done= 0;
4218
4213
  defaults_argc= 0;
4390
4385
    test_flags= argument ? (uint) atoi(argument) : 0;
4391
4386
    opt_endinfo=1;
4392
4387
    break;
4393
 
  case (int) OPT_ISAM_LOG:
4394
 
    opt_myisam_log=1;
4395
 
    break;
4396
4388
  case (int) OPT_BIN_LOG:
4397
4389
    opt_bin_log= test(argument != disabled_my_option);
4398
4390
    break;