EVOLUTION-MANAGER
Edit File: fast_upsert_bin_pad.result
set tokudb_enable_fast_upsert=1; set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); create table t0 (id int primary key, b binary(32)) engine = tokudb; create table t1 like t0; insert into t0 values (1,'hi'),(2,'there'); select * from t0; id b 1 hi 2 there insert into t1 values (1,null),(2,null); insert into t1 values (1,null) on duplicate key update b='hi'; insert into t1 values (2,null) on duplicate key update b='there'; select * from t1; id b 1 hi 2 there include/diff_tables.inc [test.t0, test.t1] drop table t0, t1;