summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorpaul@ice.snake.net <>2003-07-15 11:33:01 -0500
committerpaul@ice.snake.net <>2003-07-15 11:33:01 -0500
commitb0cea06b2e6743161d86ce368fddd7b0a8ea779b (patch)
tree512cb5e6e05a44f95790356cacde698bb56dbb0e /mysql-test
parenta3d6a8aee43bf299ba8c13f4b0cb0a72b688fa57 (diff)
downloadmariadb-git-b0cea06b2e6743161d86ce368fddd7b0a8ea779b.tar.gz
Modifications to error messages, and affected test results.
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/merge.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/merge.result b/mysql-test/r/merge.result
index 413277fee43..507ceb8951c 100644
--- a/mysql-test/r/merge.result
+++ b/mysql-test/r/merge.result
@@ -178,9 +178,9 @@ t3 CREATE TABLE `t3` (
) TYPE=MRG_MyISAM CHARSET=latin1 UNION=(`t1`,`t2`)
create table t4 (a int not null, b char(10), key(a)) type=MERGE UNION=(t1,t2);
select * from t4;
-ERROR HY000: Can't open file: 't4.MRG'. (errno: 143)
+ERROR HY000: Can't open file: 't4.MRG' (errno: 143)
alter table t4 add column c int;
-ERROR HY000: Can't open file: 't4.MRG'. (errno: 143)
+ERROR HY000: Can't open file: 't4.MRG' (errno: 143)
create database mysqltest;
create table mysqltest.t6 (a int not null primary key auto_increment, message char(20));
create table t5 (a int not null, b char(20), key(a)) type=MERGE UNION=(test.t1,mysqltest.t6);