summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/fast_update_binlog_row.result
blob: a2185b0705f444efca72a5766faf27f0e5eda52f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set default_storage_engine='tokudb';
create table tt (id int primary key, x int);
set session tokudb_disable_slow_upsert=1;
insert noar into tt values (1,0);
insert noar into tt values (1,0) on duplicate key update x=x+1;
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
insert noar into tt values (2,0) on duplicate key update x=x+1;
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
set session tokudb_disable_slow_update=1;
update noar tt set x=x+1 where id=1;
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
update noar tt set x=x+1 where id=2;
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
drop table tt;