~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Monty Taylor
  • Date: 2008-11-24 20:24:09 UTC
  • mto: This revision was merged to the branch mainline in revision 610.
  • Revision ID: mordred@solanthus.local-20081124202409-zddj3d20i3f0ogvu
Changed the bitset<32> to a bitset<5>. Made the int constants into bitset constants.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include <drizzled/item/cmpfunc.h>
33
33
#include <drizzled/session.h>
34
34
#include <drizzled/sql_load.h>
 
35
#include <bitset>
 
36
 
 
37
using namespace std;
35
38
 
36
39
/**
37
40
  @defgroup Runtime_Environment Runtime Environment
164
167
          a number of modified rows
165
168
*/
166
169
 
167
 
std::bitset<32> sql_command_flags[SQLCOM_END+1];
 
170
bitset<CF_BIT_SIZE> sql_command_flags[SQLCOM_END+1];
168
171
 
169
172
void init_update_queries(void)
170
173
{