mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
2f83aed670
git-svn-id: file:///svn/mysql/tests/mysql-test@55030 c7de825b-a66e-492c-adef-691d508d4ae1
14 lines
741 B
Text
14 lines
741 B
Text
set default_storage_engine='tokudb';
|
|
create table tt (id int primary key, x int);
|
|
set session tokudb_disable_slow_upsert=1;
|
|
insert noar into tt values (1,0);
|
|
insert noar into tt values (1,0) on duplicate key update x=x+1;
|
|
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
|
|
insert noar into tt values (2,0) on duplicate key update x=x+1;
|
|
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
|
|
set session tokudb_disable_slow_update=1;
|
|
update noar tt set x=x+1 where id=1;
|
|
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
|
|
update noar tt set x=x+1 where id=2;
|
|
ERROR 42000: Table 'tt' uses an extension that doesn't exist in this XYZ version
|
|
drop table tt;
|