mariadb/mysql-test/suite/tokudb.change_column/r/change_varbin_rename.result
Rich Prohaska 42a07a9fb7 refs #5513 disable column rename from hot column expansion tests on the mainline
git-svn-id: file:///svn/mysql/tests/mysql-test@48104 c7de825b-a66e-492c-adef-691d508d4ae1
2012-09-21 11:25:12 +00:00

15 lines
791 B
Text

DROP TABLE IF EXISTS t;
SET SESSION TOKUDB_DISABLE_SLOW_ALTER=ON;
SET SESSION DEFAULT_STORAGE_ENGINE='TokuDB';
CREATE TABLE t (a VARBINARY(100), b VARBINARY(256));
ALTER TABLE t CHANGE COLUMN a aa VARBINARY(1);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
ALTER TABLE t CHANGE COLUMN a aa VARBINARY(256);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
ALTER TABLE t CHANGE COLUMN a aa VARBINARY(100);
ALTER TABLE t CHANGE COLUMN b bb VARBINARY(255);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
ALTER TABLE t CHANGE COLUMN b bb VARBINARY(1024);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
ALTER TABLE t CHANGE COLUMN b bb VARBINARY(256);
DROP TABLE t;