summaryrefslogtreecommitdiff
path: root/mysql-test/t/union.test
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2001-08-04 16:37:29 -0600
committersasha@mysql.sashanet.com <>2001-08-04 16:37:29 -0600
commit31f269f1dde00a510bdd4f3a098b424b7d8126bd (patch)
tree09365d37e41c75d830394d6c029a7f92e807cce0 /mysql-test/t/union.test
parent8029045bb74474bc6afc6fa59c7e00ba25a0bb1e (diff)
downloadmariadb-git-31f269f1dde00a510bdd4f3a098b424b7d8126bd.tar.gz
fixed error message numbers in union test
Diffstat (limited to 'mysql-test/t/union.test')
-rw-r--r--mysql-test/t/union.test6
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;