~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-19 00:10:47 UTC
  • mfrom: (2440.2.13 rf)
  • Revision ID: me@mark.atwood.name-20111019001047-atj0u8gedphon1tb
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
namespace drizzled {
24
24
namespace identifier {
25
25
 
26
 
const identifier::Schema& data_dictionary();
27
 
const identifier::Schema& information_schema();
28
 
const identifier::Schema& system_schema();
 
26
const Schema& data_dictionary();
 
27
const Schema& information_schema();
 
28
const 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