~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2009-11-16 20:30:19 UTC
  • mto: (1220.1.4 staging)
  • mto: This revision was merged to the branch mainline in revision 1221.
  • Revision ID: brian@gaz-20091116203019-qt7xguquwkcnjaba
Move cursor flags up to storage engine flags. These need to be merged.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
*/
95
95
class StorageEngine : public Plugin
96
96
{
 
97
public:
 
98
  typedef uint64_t Table_flags;
 
99
 
 
100
private:
 
101
 
97
102
  /*
98
103
    Name used for storage engine.
99
104
  */
189
194
  */
190
195
  uint32_t slot;
191
196
 
 
197
  virtual Table_flags table_flags(void) const= 0;
 
198
 
192
199
  inline uint32_t getSlot (void) { return slot; }
193
200
  inline void setSlot (uint32_t value) { slot= value; }
194
201