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

Fix error messages

Configure fixes
This commit is contained in:
monty@hundin.mysql.fi
2001-09-18 05:16:39 +03:00
parent eb9cbe2cba
commit 0979515609
5 changed files with 25 additions and 21 deletions

View File

@ -19,25 +19,25 @@ select 't1',b,count(*) from t1 group by b UNION select 't2',b,count(*) from t2 g
# Test some error conditions with UNION
explain select a,b from t1 union all select a,b from t2;
--error 1216
--error 1217
select a,b from t1 into outfile 'skr' union select a,b from t2;
--error 1216
--error 1217
select a,b from t1 order by a union select a,b from t2;
--error 1216
--error 1217
insert into t3 select a from t1 order by a union select a from t2;
--error 1217
--error 1218
create table t3 select a,b from t1 union select a from t2;
--error 1217
--error 1218
select a,b from t1 union select a from t2;
--error 1217
--error 1218
select * from t1 union select a from t2;
--error 1217
--error 1218
select a from t1 union select * from t2;
# Test CREATE, INSERT and REPLACE