EVOLUTION-MANAGER
Edit File: tbl_opt_row_format.test
--source include/have_rocksdb.inc # # Check whether ROW_FORMAT option # is supported in CREATE and ALTER TABLE # # Note: the test does not check whether the option # has any real effect on the table, only # that it's accepted # --disable_warnings DROP TABLE IF EXISTS t1; --enable_warnings CREATE TABLE t1 (a INT, b CHAR(8) PRIMARY KEY) ENGINE=rocksdb ROW_FORMAT=FIXED; SHOW CREATE TABLE t1; ALTER TABLE t1 ROW_FORMAT=DYNAMIC; SHOW CREATE TABLE t1; DROP TABLE t1;