~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • 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:
127
127
extern uint64_t opt_tc_log_size;
128
128
extern uint64_t tc_log_page_waits;
129
129
extern bool opt_innodb;
130
 
extern std::bitset<32> test_flags;
 
130
extern std::bitset<12> test_flags;
131
131
extern uint32_t ha_open_options;
132
132
extern uint32_t drizzled_tcp_port, dropping_tables;
133
133
extern uint32_t delay_key_write_options;