diff options
author | monty@mysql.com <> | 2004-09-01 02:13:35 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-09-01 02:13:35 +0300 |
commit | ba4d4ce97ab4287dd0c3da55f1bae0aaa963a309 (patch) | |
tree | cd915739945548628e5c5f8963b9f916cf2c20ea /mysql-test/t/ndb_basic.test | |
parent | 7abae83300e2d75ea2a077fee1349915cb366967 (diff) | |
parent | ae801bad8d0e1756285450dacdfea9ae7769280e (diff) | |
download | mariadb-git-ba4d4ce97ab4287dd0c3da55f1bae0aaa963a309.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/my/mysql-4.1
Diffstat (limited to 'mysql-test/t/ndb_basic.test')
-rw-r--r-- | mysql-test/t/ndb_basic.test | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mysql-test/t/ndb_basic.test b/mysql-test/t/ndb_basic.test index a3aa042848d..0487e18cdb9 100644 --- a/mysql-test/t/ndb_basic.test +++ b/mysql-test/t/ndb_basic.test @@ -206,10 +206,6 @@ select * from t4 where a = 7 and b = 16 order by a; select * from t4 where a = 7 and b = 17 order by a; select * from t4 where a = 7 and b != 16 order by b; -select x1.a, x1.b from t2 x1, t2 x2 where x1.b = x2.b order by x1.a; -select a, b FROM t2 outer_table where -a = (select a from t2 where b = outer_table.b ) order by a; - # # update records # @@ -225,6 +221,12 @@ while ($1) } enable_query_log; +delete from t2 where a > 5; +select x1.a, x1.b from t2 x1, t2 x2 where x1.b = x2.b order by x1.a; +select a, b FROM t2 outer_table where +a = (select a from t2 where b = outer_table.b ) order by a; + + delete from t2; delete from t3; delete from t4; |