summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/fast_update_key.result
blob: c6f14e18ee4dcb6292f328d642036c3e16236709 (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
set tokudb_enable_fast_update=1;
set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES',''));
set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES',''));
create table t (ida int not null,
idb bigint not null,
idc tinyint unsigned not null,
x bigint) engine = tokudb;
update t set x=x+1 where ida=1;
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
drop table t;
create table t (ida int not null,
idb bigint not null,
idc tinyint unsigned not null,
x bigint,
clustering key(ida,idb,idc)) engine = tokudb;
update t set x=x+1 where ida=1;
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
drop table t;
create table t (ida int not null,
idb bigint not null,
idc tinyint unsigned not null,
x bigint,
primary key(ida,idb,idc),
key(x)) engine = tokudb;
update t set x=x+1 where ida=1;
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
drop table t;
create table t (id char(32), x bigint, primary key(id(1))) engine = tokudb;
update t set x=x+1 where id='hi';
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
drop table t;
create table t (id varchar(32), x bigint, primary key(id(1))) engine = tokudb;
update t set x=x+1 where id='hi';
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
drop table t;
create table t (ida int not null,
idb bigint not null,
idc tinyint unsigned not null,
x bigint,
primary key(ida,idb,idc)) engine = tokudb;
insert into t values (1,2,3,0);
update t set x=x+1 where ida=1;
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
update t set x=x+1 where ida=1 and idb=2;
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
update t set x=x+1 where ida=1 and idb=2 or idc=3;
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
update t set x=x+1 where ida=1 and idb=2 and idc=3;
select * from t;
ida	idb	idc	x
1	2	3	1
update t set x=x+1 where idc=3 and ida=1 and idb=2;
select * from t;
ida	idb	idc	x
1	2	3	2
drop table t;