summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/suite/tokudb/r/fast_update_error.result
blob: 7a4795615a94c80ad08a4c792058e235f6683632 (plain)
1
2
3
4
5
6
7
8
9
set default_storage_engine='tokudb';
drop table if exists tt;
set tokudb_disable_slow_update=1;
create table tt (id int primary key, x int);
update noar tt set x=1 where id='abc';
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
update noar tt set x='abc' where id=1;
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
drop table tt;