~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

Merged up with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
  requires a 4-byte integer.
260
260
*/
261
261
uint32_t drizzled_tcp_port;
262
 
char *drizzled_bind_host;
263
262
uint32_t drizzled_bind_timeout;
264
263
std::bitset<12> test_flags;
265
264
uint32_t dropping_tables, ha_open_options;
1595
1594
  (void) pthread_mutex_unlock(&LOCK_thread_count);
1596
1595
 
1597
1596
  clean_up(1);
 
1597
  plugin::Registry::shutdown();
1598
1598
  clean_up_mutexes();
1599
1599
  my_end(opt_endinfo ? MY_CHECK_ERROR | MY_GIVE_INFO : 0);
1600
1600
  return 0;
1695
1695
      "relative to this."),
1696
1696
   (char**) &drizzle_home_ptr, (char**) &drizzle_home_ptr, 0, GET_STR, REQUIRED_ARG,
1697
1697
   0, 0, 0, 0, 0, 0},
1698
 
  {"bind-address", OPT_BIND_ADDRESS, N_("IP address to bind to."),
1699
 
   (char**) &drizzled_bind_host, (char**) &drizzled_bind_host, 0, GET_STR,
1700
 
   REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
1701
1698
  {"chroot", 'r',
1702
1699
   N_("Chroot drizzled daemon during startup."),
1703
1700
   (char**) &drizzled_chroot, (char**) &drizzled_chroot, 0, GET_STR, REQUIRED_ARG,
1933
1930
   (char**) &global_system_variables.min_examined_row_limit,
1934
1931
   (char**) &max_system_variables.min_examined_row_limit, 0, GET_ULL,
1935
1932
   REQUIRED_ARG, 0, 0, ULONG_MAX, 0, 1L, 0},
1936
 
  {"net_buffer_length", OPT_NET_BUFFER_LENGTH,
1937
 
   N_("Buffer length for TCP/IP and socket communication."),
1938
 
   (char**) &global_system_variables.net_buffer_length,
1939
 
   (char**) &max_system_variables.net_buffer_length, 0, GET_UINT32,
1940
 
   REQUIRED_ARG, 16384, 1024, 1024*1024L, 0, 1024, 0},
1941
1933
  {"optimizer_prune_level", OPT_OPTIMIZER_PRUNE_LEVEL,
1942
1934
    N_("Controls the heuristic(s) applied during query optimization to prune "
1943
1935
       "less-promising partial plans from the optimizer search space. Meaning: "
2231
2223
  aborted_threads= aborted_connects= 0;
2232
2224
  max_used_connections= 0;
2233
2225
  drizzled_user= drizzled_chroot= 0;
2234
 
  drizzled_bind_host= NULL;
2235
2226
  memset(&global_status_var, 0, sizeof(global_status_var));
2236
2227
  key_map_full.set();
2237
2228