~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2009-11-26 04:26:30 UTC
  • mto: This revision was merged to the branch mainline in revision 1227.
  • Revision ID: brian@gaz-20091126042630-okxoo603f99gyeix
Possible solution for hash/rehash.

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
uint32_t back_log;
262
262
uint32_t server_id;
263
263
uint64_t table_cache_size;
264
 
uint64_t table_def_size;
 
264
size_t table_def_size;
265
265
uint64_t aborted_threads;
266
266
uint64_t aborted_connects;
267
267
uint64_t max_connect_errors;
2073
2073
  {"table_definition_cache", OPT_TABLE_DEF_CACHE,
2074
2074
   N_("The number of cached table definitions."),
2075
2075
   (char**) &table_def_size, (char**) &table_def_size,
2076
 
   0, GET_ULL, REQUIRED_ARG, 128, 1, 512*1024L, 0, 1, 0},
 
2076
   0, GET_SIZE, REQUIRED_ARG, 128, 1, 512*1024L, 0, 1, 0},
2077
2077
  {"table_open_cache", OPT_TABLE_OPEN_CACHE,
2078
2078
   N_("The number of cached open tables."),
2079
2079
   (char**) &table_cache_size, (char**) &table_cache_size, 0, GET_UINT64,