1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-16188 Post merge fixes: more for TokuDB

This commit is contained in:
Igor Babaev
2019-02-08 12:32:31 -08:00
parent 651347b6c1
commit 9fe1e83df0
19 changed files with 58 additions and 42 deletions

View File

@ -37,6 +37,7 @@ create table t1 (a int not null) engine=heap;
insert into t1 values (869751),(736494),(226312),(802616),(728912);
select * from t1 where a > 736494;
alter table t1 add unique uniq_id using BTREE (a);
--sorted_result
select * from t1 where a > 736494;
select * from t1 where a = 736494;
select * from t1 where a=869751 or a=736494;