~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Lee Bieber
  • Date: 2010-12-23 06:19:01 UTC
  • mfrom: (2022.1.2 build)
  • Revision ID: kalebral@gmail.com-20101223061901-9kx0fumarrqq0ky6
Merge Stewart - update storage engine api for testing
Merge Andrew - Docs for the drizzleadmin tool and the new protocol options

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
extern const std::string UNKNOWN_STRING;
125
125
extern const std::string DEFAULT_DEFINITION_FILE_EXT;
126
126
 
 
127
 
127
128
/*
128
129
  StorageEngine is a singleton structure - one instance per storage engine -
129
130
  to provide access to storage engine functionality that works on the
136
137
class StorageEngine : public Plugin,
137
138
                      public MonitoredInTransaction
138
139
{
 
140
  friend class SEAPITester;
139
141
public:
140
142
  typedef uint64_t Table_flags;
141
143