EVOLUTION-MANAGER
Edit File: hcr_text.test
--source include/have_tokudb.inc --disable_warnings drop table if exists t; --enable_warnings set default_storage_engine='tokudb'; set tokudb_disable_slow_alter=1; create table t (a tinytext); alter table t change column a aa tinytext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 text; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 mediumtext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 longtext; drop table t; create table t (a text); alter table t change column a aa text; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 tinytext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 mediumtext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 longtext; drop table t; create table t (a mediumtext); alter table t change column a aa mediumtext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 tinytext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 text; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 longtext; drop table t; create table t (a longtext); alter table t change column a aa longtext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 tinytext; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 text; --replace_regex /MariaDB/XYZ/ /MySQL/XYZ/ --error ER_UNSUPPORTED_EXTENSION alter table t change column aa a3 mediumtext; drop table t;