diff options
author | bar@bar.mysql.r18.ru <> | 2002-11-06 12:01:38 +0400 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2002-11-06 12:01:38 +0400 |
commit | 8229d282f7767efe4c88294acdb65507fef4079e (patch) | |
tree | ceeb5e4a43f02999d54a9e8effe4fd8754883848 /sql/mysql_priv.h | |
parent | 529146269dea329a8a3d89783cc3c612fa86c4d6 (diff) | |
download | mariadb-git-8229d282f7767efe4c88294acdb65507fef4079e.tar.gz |
Extensions to support this:
SHOW CREATE DATABASE [IF NOT EXISTS] dbname
Version dependant parts are displayed in appropriative comments:
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `ucs` /*!40100 DEFAULT CHARACTER SET ucs2*/
Diffstat (limited to 'sql/mysql_priv.h')
-rw-r--r-- | sql/mysql_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h index 7788056138c..c61621bf91d 100644 --- a/sql/mysql_priv.h +++ b/sql/mysql_priv.h @@ -496,7 +496,7 @@ int mysqld_show_logs(THD *thd); void mysqld_list_fields(THD *thd,TABLE_LIST *table, const char *wild); int mysqld_dump_create_info(THD *thd, TABLE *table, int fd = -1); int mysqld_show_create(THD *thd, TABLE_LIST *table_list); -int mysqld_show_create_db(THD *thd, const char *dbname); +int mysqld_show_create_db(THD *thd, const char *dbname, HA_CREATE_INFO *create); void mysqld_list_processes(THD *thd,const char *user,bool verbose); int mysqld_show_status(THD *thd); |