~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: lbieber
  • Date: 2010-09-26 02:09:47 UTC
  • mfrom: (1791.3.5 local-catalog)
  • mto: This revision was merged to the branch mainline in revision 1794.
  • Revision ID: lbieber@orisndriz08-20100926020947-o28psemscwvlwg05
Merge Monty - Beginning of catalog support, adds a default local catalog. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
571
571
};
572
572
 
573
573
 
574
 
static SchemaIdentifier INFORMATION_SCHEMA_IDENTIFIER("information_schema");
575
 
static SchemaIdentifier DATA_DICTIONARY_IDENTIFIER("data_dictionary");
576
 
 
577
574
void StorageEngine::getIdentifiers(Session &session, const SchemaIdentifier &schema_identifier, TableIdentifiers &set_of_identifiers)
578
575
{
 
576
  static SchemaIdentifier INFORMATION_SCHEMA_IDENTIFIER("information_schema");
 
577
  static SchemaIdentifier DATA_DICTIONARY_IDENTIFIER("data_dictionary");
 
578
 
579
579
  CachedDirectory directory(schema_identifier.getPath(), set_of_table_definition_ext);
580
580
 
581
581
  if (schema_identifier == INFORMATION_SCHEMA_IDENTIFIER)