summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb/r/fast_update_char.result
blob: 4121d5d72ebad139b186f0871f9408e4431a5ced (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
set default_storage_engine='tokudb';
drop table if exists tt, ti;
set tokudb_disable_slow_update=1;
create table tt (id int primary key, c char(32), b binary(32));
create table ti like tt;
alter table ti engine=innodb;
insert into tt values (1,null,null);
insert into ti values (1,null,null);
update noar tt set c='hi' where id=1;
update noar ti set c='hi' where id=1;
include/diff_tables.inc [test.tt, test.ti]
update noar tt set c='there' where id=1;
update noar ti set c='there' where id=1;
include/diff_tables.inc [test.tt, test.ti]
drop table tt, ti;
create table tt (id char(8) primary key, c char(32), b binary(32));
create table ti like tt;
alter table ti engine=innodb;
insert into tt values ('1',null,null);
insert into ti values ('1',null,null);
update noar tt set c='hi' where id='1';
update noar ti set c='hi' where id='1';
include/diff_tables.inc [test.tt, test.ti]
update noar tt set c='there' where id='1';
update noar ti set c='there' where id='1';
include/diff_tables.inc [test.tt, test.ti]
drop table tt, ti;
create table tt (id varchar(8) primary key, a int, b char(32), c char(32), d binary(32));
create table ti like tt;
alter table ti engine=innodb;
insert into tt values ('1',null,null,null,null);
insert into ti values ('1',null,null,null,null);
update noar tt set b='hi' where id='1';
update noar ti set b='hi' where id='1';
include/diff_tables.inc [test.tt, test.ti]
update noar tt set c='there' where id='1';
update noar ti set c='there' where id='1';
include/diff_tables.inc [test.tt, test.ti]
drop table tt, ti;
create table tt (id varchar(8) primary key, a int, b char(32), c char(32), d binary(32));
create table ti like tt;
alter table ti engine=innodb;
insert into tt values ('1',null,null,null,null);
insert into ti values ('1',null,null,null,null);
update noar tt set b='123' where id='1';
update noar ti set b='123' where id='1';
include/diff_tables.inc [test.tt, test.ti]
update noar tt set c=456 where id='1';
update noar ti set c=456 where id='1';
include/diff_tables.inc [test.tt, test.ti]
update noar tt set c=789 where id=1;
update noar ti set c=789 where id=1;
include/diff_tables.inc [test.tt, test.ti]
drop table tt, ti;