summaryrefslogtreecommitdiff
path: root/sql/sql_db.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_db.h')
-rw-r--r--sql/sql_db.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_db.h b/sql/sql_db.h
index a4ada7de6a2..7de6c2a9c99 100644
--- a/sql/sql_db.h
+++ b/sql/sql_db.h
@@ -20,13 +20,13 @@
class THD;
-int mysql_create_db(THD *thd, const char *db,
+int mysql_create_db(THD *thd, const LEX_CSTRING *db,
const DDL_options_st &options,
const Schema_specification_st *create);
-bool mysql_alter_db(THD *thd, const char *db,
+bool mysql_alter_db(THD *thd, const LEX_CSTRING *db,
const Schema_specification_st *create);
-bool mysql_rm_db(THD *thd, const char *db, bool if_exists);
-bool mysql_upgrade_db(THD *thd, LEX_CSTRING *old_db);
+bool mysql_rm_db(THD *thd, const LEX_CSTRING *db, bool if_exists);
+bool mysql_upgrade_db(THD *thd, const LEX_CSTRING *old_db);
bool mysql_change_db(THD *thd, const LEX_CSTRING *new_db_name,
bool force_switch);