summaryrefslogtreecommitdiff
path: root/mysql-test/t/join.test
diff options
context:
space:
mode:
authorunknown <monty@mysql.com/nosik.monty.fi>2006-11-28 05:43:30 +0200
committerunknown <monty@mysql.com/nosik.monty.fi>2006-11-28 05:43:30 +0200
commit76b4ccbdf8d4913993eb64ef08986654ac5f0423 (patch)
tree2e0d5a02aadc787a61070b00d83feee2846f39e1 /mysql-test/t/join.test
parent13bb3fa823245bddd051482b2efb455557b8b726 (diff)
downloadmariadb-git-76b4ccbdf8d4913993eb64ef08986654ac5f0423.tar.gz
Fixed portablity problem
Removed warnings from mysqltest scripts cmd-line-utils/readline/undo.c: Fixed portability problem mysql-test/include/mix2.inc: Removed mysqltest warnings mysql-test/include/query_cache.inc: Removed mysqltest warnings mysql-test/r/ndb_binlog_ddl_multi.result: Update tests after fixing wrong connection command in test mysql-test/t/greedy_optimizer.test: Removed mysqltest warnings mysql-test/t/join.test: Removed mysqltest warnings mysql-test/t/ndb_binlog_ddl_multi.test: Removed mysqltest warnings mysql-test/t/ndb_blob_partition.test: Removed mysqltest warnings mysql-test/t/ndb_index_ordered.test: Removed mysqltest warnings storage/ndb/src/kernel/vm/Rope.cpp: Removed compiler warning
Diffstat (limited to 'mysql-test/t/join.test')
-rw-r--r--mysql-test/t/join.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/join.test b/mysql-test/t/join.test
index 712e0b64e88..f39938ec52c 100644
--- a/mysql-test/t/join.test
+++ b/mysql-test/t/join.test
@@ -489,9 +489,9 @@ select * from v1a join (t3 natural join t4) on a = y;
# Negative tests (tests for errors)
#--------------------------------------------------------------------
-- error 1052
-select * from t1 natural join (t3 cross join t4); -- works in Oracle - bug
+select * from t1 natural join (t3 cross join t4); # works in Oracle - bug
-- error 1052
-select * from (t3 cross join t4) natural join t1; -- works in Oracle - bug
+select * from (t3 cross join t4) natural join t1; # works in Oracle - bug
-- error 1052
select * from t1 join (t2, t3) using (b);
-- error 1052