mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
42a07a9fb7
git-svn-id: file:///svn/mysql/tests/mysql-test@48104 c7de825b-a66e-492c-adef-691d508d4ae1
15 lines
791 B
Text
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;
|