~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/constants/schema.h

  • Committer: Mark Atwood
  • Date: 2011-10-08 04:50:51 UTC
  • mfrom: (2430.1.1 rf)
  • Revision ID: me@mark.atwood.name-20111008045051-6ha1qiy7k2a9c3jv
Tags: 2011.10.27
mergeĀ lp:~olafvdspek/drizzle/refactor2

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
namespace drizzled {
24
24
namespace identifier {
25
25
 
26
 
const Schema& data_dictionary();
27
 
const Schema& information_schema();
28
 
const Schema& system_schema();
 
26
const identifier::Schema& data_dictionary();
 
27
const identifier::Schema& information_schema();
 
28
const identifier::Schema& system_schema();
29
29
 
30
30
} /* namespace identifier */
31
31
} /* namespace drizzled */
32
32
 
33
33
#define DATA_DICTIONARY_IDENTIFIER drizzled::identifier::data_dictionary()
34
34
#define INFORMATION_SCHEMA_IDENTIFIER drizzled::identifier::information_schema()
 
35