mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
827fc146c4
git-svn-id: file:///svn/mysql/tests/mysql-test@47535 c7de825b-a66e-492c-adef-691d508d4ae1
10 lines
644 B
Text
10 lines
644 B
Text
DROP TABLE IF EXISTS t;
|
|
SET SESSION TOKUDB_DISABLE_SLOW_ALTER=ON;
|
|
CREATE TABLE t (a VARCHAR(255)) ENGINE=TokuDB;
|
|
ALTER TABLE t CHANGE COLUMN a a VARCHAR(1) CHARACTER SET latin1 COLLATE latin1_general_cs;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
ALTER TABLE t CHANGE COLUMN a a VARCHAR(255) CHARACTER SET latin1 COLLATE latin1_general_cs;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
ALTER TABLE t CHANGE COLUMN a a VARCHAR(256) CHARACTER SET latin1 COLLATE latin1_general_cs;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
DROP TABLE t;
|