~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

Merge in Monty's rename patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
namespace message { class Schema; }
27
27
 
28
 
bool mysql_create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists);
29
 
bool mysql_alter_db(Session *session, const message::Schema &schema_message);
30
 
bool mysql_rm_db(Session *session, SchemaIdentifier &identifier, const bool if_exists);
31
 
bool mysql_change_db(Session *session, SchemaIdentifier &identifier);
 
28
bool create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists);
 
29
bool alter_db(Session *session, const message::Schema &schema_message);
 
30
bool rm_db(Session *session, SchemaIdentifier &identifier, const bool if_exists);
 
31
bool change_db(Session *session, SchemaIdentifier &identifier);
32
32
 
33
33
} /* namespace drizzled */
34
34