Commit fd293c8d authored by Rich Prohaska's avatar Rich Prohaska

#5181 fix row_format_alter result file refs #5181

git-svn-id: file:///svn/mysql/tests/mysql-test@45208 c7de825b-a66e-492c-adef-691d508d4ae1
parent aa6539cb
SET STORAGE_ENGINE='tokudb';
DROP TABLE IF EXISTS foo;
CREATE TABLE foo (c1 int not null primary key) engine=TokuDB;
SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE (table_name LIKE 'foo');
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
NULL test foo BASE TABLE TokuDB 10 Fixed 1 0 0 9223372036854775807 0 12288 NULL 2012-06-20 22:48:30 2012-06-20 22:48:30 NULL latin1_swedish_ci NULL
SELECT CREATE_OPTIONS
FROM INFORMATION_SCHEMA.TABLES WHERE (table_name LIKE 'foo');
CREATE_OPTIONS
SHOW CREATE TABLE foo;
Table Create Table
foo CREATE TABLE `foo` (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment