From ad5100da0f7041cf7a0dbf3cf2860c0f82fc4c7a Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 4 Aug 2001 16:37:29 -0600 Subject: [PATCH] fixed error message numbers in union test mysql-test/t/union.test: fixed error message numbers --- mysql-test/t/union.test | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 -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 into outfile 'skr' 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;