1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

MDEV-16188 Post review fixes

Also adjusted some test files.
This commit is contained in:
Igor Babaev
2019-02-14 15:23:23 -08:00
parent e1de23b8d5
commit ccce4d3be9
11 changed files with 39 additions and 34 deletions

View File

@ -479,6 +479,7 @@ create table t2(
) ENGINE=MEMORY DEFAULT CHARSET=latin1;
insert into t2 select * from t1;
--echo must use sort-union rather than union:
--replace_column 9 #
explain select * from t1 where a=4 or b=4;
@ -489,9 +490,9 @@ select * from t1 ignore index(a,b) where a=4 or b=4;
--echo must use union, not sort-union:
--replace_column 9 #
explain select * from t2 where a=4 or b=4;
explain select * from t2 where a=2 or b=2;
--sorted_result
select * from t2 where a=4 or b=4;
select * from t2 where a=2 or b=2;
drop table t1, t2;