diff options
author | mattiasj@witty. <> | 2008-03-17 16:11:26 +0100 |
---|---|---|
committer | mattiasj@witty. <> | 2008-03-17 16:11:26 +0100 |
commit | d733351148bea625701d8ffa7e33cdb3c547f29a (patch) | |
tree | f03a6471a023f761cbe2452883b9a49bf8fe1b4b /sql/partition_info.cc | |
parent | d918fa6ec9d3b4f4e61ef7d95fd868aa49486f05 (diff) | |
download | mariadb-git-d733351148bea625701d8ffa7e33cdb3c547f29a.tar.gz |
Bug#35305: partition_symlink test failures
Updated the test due to bug 32167
Corrected spelling of error message
Diffstat (limited to 'sql/partition_info.cc')
-rw-r--r-- | sql/partition_info.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/partition_info.cc b/sql/partition_info.cc index e7f4d6a62c1..8feac884c77 100644 --- a/sql/partition_info.cc +++ b/sql/partition_info.cc @@ -1312,11 +1312,11 @@ bool check_partition_dirs(partition_info *part_info) return 0; dd_err: - my_error(ER_WRONG_ARGUMENTS,MYF(0),"DATA DIRECORY"); + my_error(ER_WRONG_ARGUMENTS,MYF(0),"DATA DIRECTORY"); return 1; id_err: - my_error(ER_WRONG_ARGUMENTS,MYF(0),"INDEX DIRECORY"); + my_error(ER_WRONG_ARGUMENTS,MYF(0),"INDEX DIRECTORY"); return 1; } |