~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
class Cursor;
41
41
 
42
42
class TableShare;
43
 
typedef struct st_mysql_lex_string LEX_STRING;
 
43
typedef drizzle_lex_string LEX_STRING;
44
44
typedef bool (stat_print_fn)(Session *session, const char *type, uint32_t type_len,
45
45
                             const char *file, uint32_t file_len,
46
46
                             const char *status, uint32_t status_len);
120
120
namespace plugin
121
121
{
122
122
 
123
 
const std::string UNKNOWN_STRING("UNKNOWN");
124
 
const std::string DEFAULT_DEFINITION_FILE_EXT(".dfe");
125
 
 
 
123
extern const std::string UNKNOWN_STRING;
 
124
extern const std::string DEFAULT_DEFINITION_FILE_EXT;
126
125
 
127
126
/*
128
127
  StorageEngine is a singleton structure - one instance per storage engine -