diff options
author | unknown <serg@sergbook.mysql.com> | 2006-05-31 18:07:32 +0200 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2006-05-31 18:07:32 +0200 |
commit | 0de72ae91f3101ca4e41d3f9e0a960a3babbb56e (patch) | |
tree | f0869b784e9a06e5d5e23df82b2e60d2692a6c4f /sql/sql_tablespace.cc | |
parent | cc14a84c0c67a4498c5414556e004ee42363a91a (diff) | |
download | mariadb-git-0de72ae91f3101ca4e41d3f9e0a960a3babbb56e.tar.gz |
after review fixes
mysql-test/t/disabled.def:
enable test
Diffstat (limited to 'sql/sql_tablespace.cc')
-rw-r--r-- | sql/sql_tablespace.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_tablespace.cc b/sql/sql_tablespace.cc index 84e2b9c7d04..94318a67575 100644 --- a/sql/sql_tablespace.cc +++ b/sql/sql_tablespace.cc @@ -35,7 +35,7 @@ int mysql_alter_tablespace(THD *thd, st_alter_tablespace *ts_info) push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR, ER_WARN_USING_OTHER_HANDLER, ER(ER_WARN_USING_OTHER_HANDLER), - hton2plugin[hton->slot]->name, + hton2plugin[hton->slot]->name.str, ts_info->tablespace_name ? ts_info->tablespace_name : ts_info->logfile_group_name); } @@ -64,7 +64,7 @@ int mysql_alter_tablespace(THD *thd, st_alter_tablespace *ts_info) push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR, ER_ILLEGAL_HA_CREATE_OPTION, ER(ER_ILLEGAL_HA_CREATE_OPTION), - hton2plugin[hton->slot]->name, + hton2plugin[hton->slot]->name.str, "TABLESPACE or LOGFILE GROUP"); } if (mysql_bin_log.is_open()) |