1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fixed error message numbers in union test

mysql-test/t/union.test:
  fixed error message numbers
This commit is contained in:
unknown
2001-08-04 16:37:29 -06:00
parent 39045174a5
commit ad5100da0f

View File

@ -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;