diff options
author | mskold@mysql.com <> | 2004-08-31 10:00:33 +0200 |
---|---|---|
committer | mskold@mysql.com <> | 2004-08-31 10:00:33 +0200 |
commit | 4b1671c933ca13ee0f806eec916ca4a849deaed1 (patch) | |
tree | ad6dcfd7c28952cd1a3c03334cf41f35887321c3 /mysql-test/t | |
parent | cb9591b7de8a921dd64f7d78f3f962a0a5d57779 (diff) | |
download | mariadb-git-4b1671c933ca13ee0f806eec916ca4a849deaed1.tar.gz |
Simplified expensive test
Diffstat (limited to 'mysql-test/t')
-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 a24891ab814..448db0a9165 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; |