~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-08 04:17:31 UTC
  • mto: (1089.3.4 merge)
  • mto: This revision was merged to the branch mainline in revision 1092.
  • Revision ID: osullivan.padraig@gmail.com-20090708041731-f80xfliiafxhbvsj
Modified the size of the test_flags bitset to be 12 bits instead of 32. No
bit past 11 is ever used so no need to a bitset of size 32.

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
uint32_t drizzled_tcp_port;
279
279
 
280
280
uint32_t drizzled_port_timeout;
281
 
std::bitset<32> test_flags;
 
281
std::bitset<12> test_flags;
282
282
uint32_t dropping_tables, ha_open_options;
283
283
uint32_t delay_key_write_options;
284
284
uint32_t tc_heuristic_recover= 0;