EVOLUTION-MANAGER
Edit File: fast_update_binlog_row.test
source include/have_binlog_format_row.inc; source include/have_tokudb.inc; create table tt (id int primary key, x int) engine = tokudb; source ../include/setup_fast_update_upsert.inc; set session tokudb_enable_fast_update=1; set session tokudb_enable_fast_upsert=1; insert into tt values (1,0); replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; insert into tt values (1,0) on duplicate key update x=x+1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; insert into tt values (2,0) on duplicate key update x=x+1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; update tt set x=x+1 where id=1; replace_regex /MariaDB/XYZ/ /MySQL/XYZ/; error ER_UNSUPPORTED_EXTENSION; update tt set x=x+1 where id=2; drop table tt;