mariadb/mysql-test/suite/tokudb.change_column/r/change_auto_inc.result
Rich Prohaska ea6f0bd661 refs #5511 test case for type comparisons with auto increment change
git-svn-id: file:///svn/mysql/tests/mysql-test@48765 c7de825b-a66e-492c-adef-691d508d4ae1
2012-10-09 15:21:21 +00:00

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;