~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2009-05-26 02:54:31 UTC
  • mfrom: (1022.2.34 mordred)
  • Revision ID: brian@gaz-20090526025431-hpjmsrr4j6nftuic
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
264
264
StorageEngine *heap_engine;
265
265
StorageEngine *myisam_engine;
266
266
 
267
 
bool use_temp_pool;
268
267
char* opt_secure_file_priv= 0;
269
268
/*
270
269
  True if there is at least one per-hour limit for some user, so we should
367
366
struct system_variables max_system_variables;
368
367
struct system_status_var global_status_var;
369
368
 
370
 
MY_BITMAP temp_pool;
371
 
 
372
369
const CHARSET_INFO *system_charset_info, *files_charset_info ;
373
370
const CHARSET_INFO *table_alias_charset;
374
371
const CHARSET_INFO *character_set_filesystem;
591
588
  free(drizzle_tmpdir);
592
589
  if (opt_secure_file_priv)
593
590
    free(opt_secure_file_priv);
594
 
  bitmap_free(&temp_pool);
595
591
 
596
592
  (void) unlink(pidfile_name);  // This may not always exist
597
593
 
1497
1493
  }
1498
1494
  global_system_variables.lc_time_names= my_default_lc_time_names;
1499
1495
 
1500
 
  if (use_temp_pool && bitmap_init(&temp_pool,0,1024,1))
1501
 
    return 1;
1502
 
 
1503
1496
  /* Reset table_alias_charset, now that lower_case_table_names is set. */
1504
1497
  lower_case_table_names= 1; /* This we need to look at */
1505
1498
  table_alias_charset= files_charset_info;
2255
2248
     option if compiled with valgrind support.
2256
2249
   */
2257
2250
   IF_PURIFY(0,1), 0, 0, 0, 0, 0},
2258
 
  {"temp-pool", OPT_TEMP_POOL,
2259
 
   N_("Using this option will cause most temporary files created to use a "
2260
 
      "small set of names, rather than a unique name for each new file."),
2261
 
   (char**) &use_temp_pool, (char**) &use_temp_pool, 0, GET_BOOL, NO_ARG, 1,
2262
 
   0, 0, 0, 0, 0},
2263
2251
  {"timed_mutexes", OPT_TIMED_MUTEXES,
2264
2252
   N_("Specify whether to time mutexes (only InnoDB mutexes are currently "
2265
2253
      "supported)"),