Commit 0484a8c3 authored by Rich Prohaska's avatar Rich Prohaska

refs #5516 fix hcr_binary1 test case

git-svn-id: file:///svn/mysql/tests/mysql-test@48719 c7de825b-a66e-492c-adef-691d508d4ae1
parent e2287784
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;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment