summaryrefslogtreecommitdiff
path: root/sql/sql_db.h
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2014-12-10 08:13:08 +0400
committerAlexander Barkov <bar@mariadb.org>2014-12-10 08:13:08 +0400
commitdd270e43bf84e7dbf2a9ee7c6c3a6de372128e83 (patch)
treeca8985f1c09a483871af76066068269c55c23647 /sql/sql_db.h
parentc6d3f8058db30a6621e36b05564a1b2ae68bec7f (diff)
downloadmariadb-git-dd270e43bf84e7dbf2a9ee7c6c3a6de372128e83.tar.gz
MDEV-7280 DATABASE: CREATE OR REPLACE
Diffstat (limited to 'sql/sql_db.h')
-rw-r--r--sql/sql_db.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_db.h b/sql/sql_db.h
index bdd525779f0..b0d99cc1ba4 100644
--- a/sql/sql_db.h
+++ b/sql/sql_db.h
@@ -22,10 +22,10 @@ class THD;
int mysql_create_db(THD *thd, char *db,
const DDL_options_st &options,
- Schema_specification_st *create, bool silent);
+ const Schema_specification_st *create);
bool mysql_alter_db(THD *thd, const char *db,
- Schema_specification_st *create);
-bool mysql_rm_db(THD *thd, char *db, bool if_exists, bool silent);
+ const Schema_specification_st *create);
+bool mysql_rm_db(THD *thd, char *db, bool if_exists);
bool mysql_upgrade_db(THD *thd, LEX_STRING *old_db);
bool mysql_change_db(THD *thd, const LEX_STRING *new_db_name,
bool force_switch);