mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
2f83aed670
git-svn-id: file:///svn/mysql/tests/mysql-test@55030 c7de825b-a66e-492c-adef-691d508d4ae1
45 lines
1.5 KiB
Text
45 lines
1.5 KiB
Text
source include/have_tokudb.inc;
|
|
|
|
set default_storage_engine='tokudb';
|
|
|
|
disable_warnings;
|
|
drop table if exists t;
|
|
enable_warnings;
|
|
|
|
set tokudb_disable_slow_upsert=1;
|
|
|
|
# must have primary key
|
|
create table t (a int, b char(32), c varchar(32), d blob);
|
|
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
|
|
error ER_UNSUPPORTED_EXTENSION;
|
|
insert noar into t values (1,null,null,null) on duplicate key update a=42;
|
|
drop table t;
|
|
|
|
# must have no clustering keys
|
|
create table t (id int primary key, a int, b char(32), c varchar(32), d blob, clustering key(a));
|
|
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
|
|
error ER_UNSUPPORTED_EXTENSION;
|
|
insert noar into t values (1,null,null,null,null) on duplicate key update a=42;
|
|
drop table t;
|
|
|
|
# must have no secondary keys
|
|
create table t (id int primary key, a int, b char(32), c varchar(32), d blob, key(c));
|
|
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
|
|
error ER_UNSUPPORTED_EXTENSION;
|
|
insert noar into t values (1,null,null,null,null) on duplicate key update a=42;
|
|
drop table t;
|
|
|
|
# update field must not be part of any key
|
|
create table t (id int, a int, b char(32), c varchar(32), d blob, primary key(id, a));
|
|
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
|
|
error ER_UNSUPPORTED_EXTENSION;
|
|
insert noar into t values (1,2,null,null,null) on duplicate key update a=42;
|
|
drop table t;
|
|
|
|
create table t (id int, a int, b char(32), c varchar(32), d blob, primary key(a, id));
|
|
replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;
|
|
error ER_UNSUPPORTED_EXTENSION;
|
|
insert noar into t values (1,2,null,null,null) on duplicate key update a=42;
|
|
drop table t;
|
|
|
|
|