~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2009-06-15 21:05:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090615210547-f4k9y7zuh5wxkuzq
Committing Stewart's tmp fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  HTON_BIT_FLUSH_AFTER_RENAME,
51
51
  HTON_BIT_NOT_USER_SELECTABLE,
52
52
  HTON_BIT_TEMPORARY_NOT_SUPPORTED,   // Having temporary tables not supported
 
53
  HTON_BIT_TEMPORARY_ONLY,
53
54
  HTON_BIT_SIZE
54
55
};
55
56
 
61
62
static const std::bitset<HTON_BIT_SIZE> HTON_FLUSH_AFTER_RENAME(1 << HTON_BIT_FLUSH_AFTER_RENAME);
62
63
static const std::bitset<HTON_BIT_SIZE> HTON_NOT_USER_SELECTABLE(1 << HTON_BIT_NOT_USER_SELECTABLE);
63
64
static const std::bitset<HTON_BIT_SIZE> HTON_TEMPORARY_NOT_SUPPORTED(1 << HTON_BIT_TEMPORARY_NOT_SUPPORTED);
 
65
static const std::bitset<HTON_BIT_SIZE> HTON_TEMPORARY_ONLY(1 << HTON_BIT_TEMPORARY_ONLY);
64
66
 
65
67
class Table;
66
68