~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Monty Taylor
  • Date: 2009-05-09 22:13:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1009.
  • Revision ID: mordred@inaugust.com-20090509221347-l712szviusbobro0
Re-added bitset<> as a replacement for Bitmap<>

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
/* Bits to show what an alter table will do */
38
38
#include <drizzled/sql_bitmap.h>
39
39
 
 
40
#include<bitset>
 
41
 
40
42
#define HA_MAX_ALTER_FLAGS 40
41
 
typedef Bitmap<HA_MAX_ALTER_FLAGS> HA_ALTER_FLAGS;
 
43
typedef std::bitset<HA_MAX_ALTER_FLAGS> HA_ALTER_FLAGS;
42
44
 
43
45
 
44
46
typedef bool (*qc_engine_callback)(Session *session, char *table_key,