mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
d2118c28b9
git-svn-id: file:///svn/mysql/tests/mysql-test@50365 c7de825b-a66e-492c-adef-691d508d4ae1
20 lines
1.1 KiB
Text
20 lines
1.1 KiB
Text
set default_storage_engine='tokudb';
|
|
drop table if exists t;
|
|
set tokudb_enable_fast_upsert=1;
|
|
set tokudb_disable_slow_upsert=1;
|
|
create table t (a int, b char(32), c varchar(32), d blob);
|
|
insert into t values (1,null,null,null) on duplicate key update a=42;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
drop table t;
|
|
create table t (id int primary key, a int, b char(32), c varchar(32), d blob, clustering key(a));
|
|
insert into t values (1,null,null,null,null) on duplicate key update a=42;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
drop table t;
|
|
create table t (id int primary key, a int, b char(32), c varchar(32), d blob, key(a));
|
|
insert into t values (1,null,null,null,null) on duplicate key update a=42;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
drop table t;
|
|
create table t (id int primary key, a int, b char(32), c varchar(32), d blob, key(b, a));
|
|
insert into t values (1,null,null,null,null) on duplicate key update a=42;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
drop table t;
|