1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

The output of explain command for some queries has changed

after introducing Item_equal.


BitKeeper/etc/ignore:
  Added mysql-test/r/index_merge_load.result mysql-test/t/index_merge.load to the ignore list
This commit is contained in:
unknown
2003-12-02 16:41:53 -08:00
parent fc6cf268b0
commit 2954cc67a9
13 changed files with 60 additions and 48 deletions

View File

@ -74,9 +74,9 @@ select * from t1 where 1 xor 1;
a
explain extended select * from t1 where 1 xor 1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE
Warnings:
Note 1003 select high_priority test.t1.a AS `a` from test.t1 where (1 xor 1)
Note 1003 select high_priority test.t1.a AS `a` from test.t1
select - a from t1;
- a
-1