diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-08-04 16:37:29 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-08-04 16:37:29 -0600 |
commit | ad5100da0f7041cf7a0dbf3cf2860c0f82fc4c7a (patch) | |
tree | 09365d37e41c75d830394d6c029a7f92e807cce0 /mysql-test/t/union.test | |
parent | 39045174a55972dba7c2d208dfbc98824ee70832 (diff) | |
download | mariadb-git-ad5100da0f7041cf7a0dbf3cf2860c0f82fc4c7a.tar.gz |
fixed error message numbers in union test
mysql-test/t/union.test:
fixed error message numbers
Diffstat (limited to 'mysql-test/t/union.test')
-rw-r--r-- | mysql-test/t/union.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/union.test b/mysql-test/t/union.test index b831be7db28..a96a33db04b 100644 --- a/mysql-test/t/union.test +++ b/mysql-test/t/union.test @@ -19,11 +19,11 @@ select 't1',b,count(*) from t1 group by b UNION select 't2',b,count(*) from t2 g explain select a,b from t1 union all select a,b from t2; # Test some error conditions with UNION ---error 1213 +--error 1214 select a,b from t1 into outfile 'skr' union select a,b from t2; ---error 1213 -select a,b from t1 order by a union select a,b from t2; --error 1214 +select a,b from t1 order by a union select a,b from t2; +--error 1215 select a,b from t1 union select a from t2; drop table t1,t2; |