1DROP TABLE IF EXISTS t;
2SET SESSION TOKUDB_DISABLE_SLOW_ALTER=ON;
3CREATE TABLE t (a VARCHAR(1)) ENGINE=TokuDB;
4ALTER TABLE t CHANGE COLUMN a a VARBINARY(1);
5ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
6ALTER TABLE t CHANGE COLUMN a a VARBINARY(100);
7ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
8ALTER TABLE t CHANGE COLUMN a a VARBINARY(1000);
9ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
10DROP TABLE t;
11