~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

Merging change info_schema changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
319
319
 
320
320
  static int getTableDefinition(Session& session,
321
321
                                TableIdentifier &identifier,
322
 
                                message::Table *table_proto= NULL);
 
322
                                message::Table *table_proto= NULL,
 
323
                                bool include_temporary_tables= true);
323
324
  static int getTableDefinition(Session& session,
324
325
                                const char* path,
325
326
                                const char *db,
326
327
                                const char *table_name,
327
328
                                const bool is_tmp,
328
 
                                message::Table *table_proto= NULL);
 
329
                                message::Table *table_proto= NULL,
 
330
                                bool include_temporary_tables= true);
 
331
  static bool doesTableExist(Session& session,
 
332
                             TableIdentifier &identifier,
 
333
                             bool include_temporary_tables= true);
329
334
 
330
335
  static plugin::StorageEngine *findByName(std::string find_str);
331
336
  static plugin::StorageEngine *findByName(Session& session,