~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2009-12-01 20:29:58 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1236.
  • Revision ID: brian@gaz-20091201202958-4xzjbani7rwcvigd
Added engine flag so that an engine can skip store_lock.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
  HTON_BIT_NO_PREFIX_CHAR_KEYS,
77
77
  HTON_BIT_HAS_CHECKSUM,
78
78
  HTON_BIT_ANY_INDEX_MAY_BE_UNIQUE,
 
79
  HTON_BIT_SKIP_STORE_LOCK,
79
80
  HTON_BIT_SIZE
80
81
};
81
82
 
109
110
static const std::bitset<HTON_BIT_SIZE> HTON_NO_PREFIX_CHAR_KEYS(1 << HTON_BIT_NO_PREFIX_CHAR_KEYS);
110
111
static const std::bitset<HTON_BIT_SIZE> HTON_HAS_CHECKSUM(1 << HTON_BIT_HAS_CHECKSUM);
111
112
static const std::bitset<HTON_BIT_SIZE> HTON_ANY_INDEX_MAY_BE_UNIQUE(1 << HTON_BIT_ANY_INDEX_MAY_BE_UNIQUE);
 
113
static const std::bitset<HTON_BIT_SIZE> HTON_SKIP_STORE_LOCK(1 << HTON_BIT_SKIP_STORE_LOCK);
112
114
 
113
115
 
114
116
class Table;