~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Padraig O'Sullivan
  • Date: 2010-02-10 16:26:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1294.
  • Revision ID: osullivan.padraig@gmail.com-20100210162601-itx2ndl397pc1wr6
Corrected an order of initialization in a few optimizer classes

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 mysql_create_db(Session *session, const char *db, message::Schema *schema_message, bool is_if_not_exists);
 
29
bool mysql_alter_db(Session *session, const char *db, message::Schema *schema_message);
 
30
bool mysql_rm_db(Session *session, char *db, bool if_exists);
 
31
bool mysql_change_db(Session *session, const LEX_STRING *new_db_name, bool force_switch);
 
32
 
 
33
bool check_db_dir_existence(const char *db_name);
 
34
int get_database_metadata(const char *dbname, message::Schema *db);
 
35
 
 
36
const CHARSET_INFO *get_default_db_collation(const char *db_name);
32
37
 
33
38
} /* namespace drizzled */
34
39