~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Brian Aker
  • Date: 2010-02-25 04:05:56 UTC
  • mto: (1273.13.101 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100225040556-98f5ff0srrbhw68w
More cleanup on ALTER SCHEMA. Hey! MySQL never had errors on half of it...
we do :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
namespace message { class Schema; }
31
31
 
32
 
bool mysql_create_db(Session *session, message::Schema &schema_message, bool is_if_not_exists);
 
32
bool mysql_create_db(Session *session, const message::Schema &schema_message, bool is_if_not_exists);
33
33
bool mysql_alter_db(Session *session, const message::Schema &schema_message);
34
34
bool mysql_rm_db(Session *session, char *db, bool if_exists);
35
35
bool mysql_change_db(Session *session, const LEX_STRING *new_db_name, bool force_switch);