mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
refs #5516 fix hcr_binary1 test case
git-svn-id: file:///svn/mysql/tests/mysql-test@48719 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
64c0ecfc5d
commit
fea0b77adf
2 changed files with 6 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
|||
drop table if exists t;
|
||||
set default_storage_engine='tokudb';
|
||||
set tokudb_disable_slow_alter=1;
|
||||
create table t (a char(1));
|
||||
alter table t change column a aa char(1);
|
||||
alter table t change column aa a3 char(1) not null;
|
||||
create table t (a binary(1));
|
||||
alter table t change column a aa binary(1);
|
||||
alter table t change column aa a3 binary(1) not null;
|
||||
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
||||
drop table t;
|
||||
|
|
|
@ -5,12 +5,12 @@ drop table if exists t;
|
|||
set default_storage_engine='tokudb';
|
||||
set tokudb_disable_slow_alter=1;
|
||||
|
||||
create table t (a char(1));
|
||||
create table t (a binary(1));
|
||||
|
||||
alter table t change column a aa char(1);
|
||||
alter table t change column a aa binary(1);
|
||||
|
||||
--replace_regex /MariaDB/XYZ/ /MySQL/XYZ/
|
||||
--error ER_UNSUPPORTED_EXTENSION
|
||||
alter table t change column aa a3 char(1) not null;
|
||||
alter table t change column aa a3 binary(1) not null;
|
||||
|
||||
drop table t;
|
||||
|
|
Loading…
Reference in a new issue