~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Brian Aker
  • Date: 2011-01-17 06:41:24 UTC
  • mfrom: (2087.4.2 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110117064124-cytq2o0d5h5c6fi2
Merge in identifier naming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
bool create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists);
29
29
bool alter_db(Session *session, const message::Schema &schema_message, const message::schema::shared_ptr &original_schema);
30
 
bool rm_db(Session *session, SchemaIdentifier &identifier, const bool if_exists);
31
 
bool change_db(Session *session, SchemaIdentifier &identifier);
 
30
bool rm_db(Session *session, identifier::Schema &identifier, const bool if_exists);
 
31
bool change_db(Session *session, identifier::Schema &identifier);
32
32
 
33
33
} /* namespace drizzled */
34
34