~kalebral-deactivatedaccount/drizzle/change-error_num_to_enum-2

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/test-suite-dir/embedded_innodb/tests/r/row_format.result

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
CREATE TABLE t1 (a int) ENGINE=INNODB ROW_FORMAT=COMPRESSED;
2
 
ERROR HY000: Can't create table 'test.t1' (errno: 168)
 
2
ERROR HY000: Can't create table 'test.t1' (errno: 138)
3
3
SHOW WARNINGS;
4
4
Level   Code    Message
5
5
Error   1005    Cannot create table test/t1. InnoDB Error 48 (Unsupported)
6
6
 
7
 
Error   1005    Can't create table 'test.t1' (errno: 168)
 
7
Error   1005    Can't create table 'test.t1' (errno: 138)
8
8
CREATE TABLE t2 (a int) ENGINE=INNODB ROW_FORMAT=COMPACT;
9
9
CREATE TABLE t3 (a int) ENGINE=INNODB ROW_FORMAT=DYNAMIC;
10
10
CREATE TABLE t4 (a int) ENGINE=INNODB ROW_FORMAT=REDUNDANT;