~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.h

  • Committer: Brian Aker
  • Date: 2009-11-20 19:07:14 UTC
  • mfrom: (1223.1.5 push)
  • Revision ID: brian@gaz-20091120190714-dhr3lgqxrt7dq1fc
Collected Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
namespace drizzled { namespace message { class Schema; } }
25
25
 
26
 
bool mysql_create_db(Session *session, const char *db, HA_CREATE_INFO *create_info);
 
26
bool mysql_create_db(Session *session, const char *db, HA_CREATE_INFO *create_info,
 
27
                     bool is_if_not_exists);
27
28
bool mysql_alter_db(Session *session, const char *db, HA_CREATE_INFO *create);
28
29
bool mysql_rm_db(Session *session,char *db, bool if_exists);
29
30
bool mysql_change_db(Session *session, const LEX_STRING *new_db_name,