summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/t/fast_update_disable_slow_update.test
blob: 3fdca0a6edd6d9c4e98f29afc5699880b1c44da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--source include/have_tokudb.inc

set default_storage_engine='tokudb';

--disable_warnings
drop table if exists t;
--enable_warnings

create table t (id int primary key, b int, key(b));

set tokudb_disable_slow_update=1;

replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
--error ER_UNSUPPORTED_EXTENSION
update noar t set b=b+1 where id=42;

drop table t;