summaryrefslogtreecommitdiff
path: root/mysql-test/t/union.test
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-09-18 05:16:39 +0300
committermonty@hundin.mysql.fi <>2001-09-18 05:16:39 +0300
commit0979515609b62c287d2fe8cadb1cbb6cb53630e4 (patch)
treebec809e08634f934190434f5e22828676c8b9dfe /mysql-test/t/union.test
parenteb9cbe2cba89f696e782c53f8ce668a8f301cc31 (diff)
downloadmariadb-git-0979515609b62c287d2fe8cadb1cbb6cb53630e4.tar.gz
Fix error messages
Configure fixes
Diffstat (limited to 'mysql-test/t/union.test')
-rw-r--r--mysql-test/t/union.test14
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/t/union.test b/mysql-test/t/union.test
index e780e9ec528..a4a29c76e65 100644
--- a/mysql-test/t/union.test
+++ b/mysql-test/t/union.test
@@ -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