~jaypipes/drizzle/replication-ddl

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Jay Pipes
  • Date: 2010-04-01 18:42:31 UTC
  • mfrom: (1405.4.18 bad-staging)
  • Revision ID: jpipes@serialcoder-20100401184231-pigk7uoqoynmhqhk
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
bool mysql_create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists);
29
29
bool mysql_alter_db(Session *session, const message::Schema &schema_message);
30
 
bool mysql_rm_db(Session *session, const std::string &schema_name, const bool if_exists);
31
 
bool mysql_change_db(Session *session, const std::string &new_db_name);
 
30
bool mysql_rm_db(Session *session, SchemaIdentifier &identifier, const bool if_exists);
 
31
bool mysql_change_db(Session *session, SchemaIdentifier &identifier);
32
32
 
33
33
} /* namespace drizzled */
34
34