EVOLUTION-MANAGER
Edit File: fast_upsert_values.result
set session sql_mode=(select replace(@@sql_mode,'STRICT_TRANS_TABLES','')); set session sql_mode=(select replace(@@sql_mode,'STRICT_ALL_TABLES','')); set tokudb_enable_fast_upsert=1; create table t (id int primary key, x int not null) engine = tokudb; insert into t values (1,1); insert into t values (1,1) on duplicate key update x=x+1; select * from t; id x 1 2 insert into t values (1,10) on duplicate key update x=values(x)+1; ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version select * from t; id x 1 2 insert into t values (1,10) on duplicate key update x=x+values(x); select * from t; id x 1 12 insert into t values (1,100) on duplicate key update x=x+values(x); select * from t; id x 1 112 drop table t;