diff options
author | unknown <timour@askmonty.org> | 2011-02-03 17:00:28 +0200 |
---|---|---|
committer | unknown <timour@askmonty.org> | 2011-02-03 17:00:28 +0200 |
commit | 648e604615dfe852abbd467dbd8e6c3c9476dd07 (patch) | |
tree | 28d2f105add43131537c5109a1797a459c80ca8a /mysql-test/r/ps_11bugs.result | |
parent | fd6a079993cdc7cebbc533784455bf3c78f34b2a (diff) | |
download | mariadb-git-648e604615dfe852abbd467dbd8e6c3c9476dd07.tar.gz |
MWL#89
Adjusted test cases in accordance with the implementation.
Diffstat (limited to 'mysql-test/r/ps_11bugs.result')
-rw-r--r-- | mysql-test/r/ps_11bugs.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/ps_11bugs.result b/mysql-test/r/ps_11bugs.result index 5c11163ab9e..f9f0525646d 100644 --- a/mysql-test/r/ps_11bugs.result +++ b/mysql-test/r/ps_11bugs.result @@ -120,9 +120,9 @@ create table t1 (a int primary key); insert into t1 values (1); explain select * from t1 where 3 in (select (1+1) union select 1); id select_type table type possible_keys key key_len ref rows Extra -1 PRIMARY NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables -2 DEPENDENT SUBQUERY NULL NULL NULL NULL NULL NULL NULL Impossible HAVING -3 DEPENDENT UNION NULL NULL NULL NULL NULL NULL NULL Impossible HAVING +1 PRIMARY t1 system NULL NULL NULL NULL 1 +2 DEPENDENT SUBQUERY NULL NULL NULL NULL NULL NULL NULL No tables used +3 DEPENDENT UNION NULL NULL NULL NULL NULL NULL NULL No tables used NULL UNION RESULT <union2,3> ALL NULL NULL NULL NULL NULL select * from t1 where 3 in (select (1+1) union select 1); a |