summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/suite/tokudb/t/cluster_update2.test
blob: 366a58aaa6bf2f43e406f9ebc5ccd2002a275efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#--source include/have_tokudb.inc
SET DEFAULT_STORAGE_ENGINE='tokudb';

--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings

create table t1(a int, b int, c int, d int, primary key(a), clustering key(b))engine=tokudb;

insert into t1 values (1,10,100,1000),(2,20,200,2000),(3,30,300,3000),(4,40,400,4000),(5,50,500,5000),(6,60,600,6000),(7,70,700,7000),(8,80,800,8000),(9,90,900,9000);
select * from t1;

#update non-index column
update t1 set d=d+10000;
select * from t1;
#ignore rows column
--replace_column 9 NULL;
explain select * From t1 where b > 0;
select * From t1 where b > 0;

#update prim_key
update t1 set a=a+10000;
select * from t1;
#ignore rows column
--replace_column 9 NULL;
explain select * From t1 where b > 0;
select * From t1 where b > 0;

#update clustering key
update t1 set b=b+10000;
select * from t1;
#ignore rows column
--replace_column 9 NULL;
explain select * From t1 where b > 0;
select * From t1 where b > 0;

drop table t1;


create table t1(a int, b int, c int, d int, clustering key(b))engine=tokudb;

insert into t1 values (2,20,200,2000),(4,40,400,4000),(1,10,100,1000),(5,50,500,5000),(6,60,600,6000),(7,70,700,7000),(8,80,800,8000),(3,30,300,3000),(9,90,900,9000);
select * from t1;

#update non-index column
update t1 set d=d+10000;
select * from t1;
#ignore rows column
--replace_column 9 NULL;
explain select * From t1 where b > 0;
select * From t1 where b > 0;

#update clustering key
update t1 set b=b+10000;
select * from t1;
#ignore rows column
--replace_column 9 NULL;
explain select * From t1 where b > 0;
select * From t1 where b > 0;

alter table t1 drop key b;
alter table t1 add clustering key b(b);
select * from t1;
#ignore rows column
--replace_column 9 NULL;
explain select * From t1 where b > 0;
select * From t1 where b > 0;

drop table t1;