diff options
author | unknown <mskold@mysql.com> | 2004-08-24 23:13:32 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2004-08-24 23:13:32 +0200 |
commit | 340d40a77c87009d83fe360ca00bd5ef0f7b8792 (patch) | |
tree | a2764457c2c393e50d22542d74877ad650ff6bfd /mysql-test/t/ndb_basic.test | |
parent | 92dfd1bf9a3cc1b2ae720363295acf633b1e7271 (diff) | |
download | mariadb-git-340d40a77c87009d83fe360ca00bd5ef0f7b8792.tar.gz |
Cleaned up rnd_init
Diffstat (limited to 'mysql-test/t/ndb_basic.test')
-rw-r--r-- | mysql-test/t/ndb_basic.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_basic.test b/mysql-test/t/ndb_basic.test index ea2a70e1837..a24891ab814 100644 --- a/mysql-test/t/ndb_basic.test +++ b/mysql-test/t/ndb_basic.test @@ -206,6 +206,10 @@ 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 # |