summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-09-05 11:27:31 +0200
committerunknown <serg@serg.mylan>2004-09-05 11:27:31 +0200
commite9a404525242a1e9745f479a53d4b793b844b58b (patch)
tree57975a39b8cfa48d80c94a2e66e67f9061d69e50 /mysql-test/r
parent88fe390a721e4bc92918f8571cdf8961dc340796 (diff)
downloadmariadb-git-e9a404525242a1e9745f479a53d4b793b844b58b.tar.gz
union.test: drop table added
BitKeeper/etc/ignore: Added support-files/my-innodb-heavy-4G.cnf to the ignore list mysql-test/r/union.result: drop table added mysql-test/t/union.test: drop table added
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/union.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result
index 4b9555c334b..45866cdf495 100644
--- a/mysql-test/r/union.result
+++ b/mysql-test/r/union.result
@@ -420,6 +420,7 @@ a
(SELECT * FROM t1) UNION all (SELECT SQL_CALC_FOUND_ROWS * FROM t2) LIMIT 1;
Wrong usage/placement of 'SQL_CALC_FOUND_ROWS'
create temporary table t1 select a from t1 union select a from t2;
+drop table t1;
create table t1 select a from t1 union select a from t2;
INSERT TABLE 't1' isn't allowed in FROM table list
select a from t1 union select a from t2 order by t2.a;