mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
ea6f0bd661
git-svn-id: file:///svn/mysql/tests/mysql-test@48765 c7de825b-a66e-492c-adef-691d508d4ae1
7 lines
297 B
Text
7 lines
297 B
Text
DROP TABLE IF EXISTS t;
|
|
SET SESSION TOKUDB_DISABLE_SLOW_ALTER=ON;
|
|
SET SESSION DEFAULT_STORAGE_ENGINE='TokuDB';
|
|
CREATE TABLE t (a INT, PRIMARY KEY(a));
|
|
ALTER TABLE t CHANGE COLUMN a a INT AUTO_INCREMENT;
|
|
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
|
|
DROP TABLE t;
|