mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Applying InnoDB plugin snashot
Detailed revision comments: r6101 | jyang | 2009-10-23 11:45:50 +0300 (Fri, 23 Oct 2009) | 7 lines branches/zip: Update test result with the WARN_LEVEL_ERROR to WARN_LEVEL_WARN change. This is the same result as submitted in rb://172 review, which approved by Sunny Bains and Marko.
This commit is contained in:
@ -198,13 +198,13 @@ create table t1 (id int primary key) engine = innodb key_block_size = 0;
|
|||||||
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: invalid KEY_BLOCK_SIZE = 0. Valid values are [1, 2, 4, 8, 16]
|
Warning 1478 InnoDB: invalid KEY_BLOCK_SIZE = 0. Valid values are [1, 2, 4, 8, 16]
|
||||||
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
||||||
create table t2 (id int primary key) engine = innodb key_block_size = 9;
|
create table t2 (id int primary key) engine = innodb key_block_size = 9;
|
||||||
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
Warning 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
||||||
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
||||||
create table t3 (id int primary key) engine = innodb key_block_size = 1;
|
create table t3 (id int primary key) engine = innodb key_block_size = 1;
|
||||||
create table t4 (id int primary key) engine = innodb key_block_size = 2;
|
create table t4 (id int primary key) engine = innodb key_block_size = 2;
|
||||||
@ -235,28 +235,28 @@ key_block_size = 8 row_format = redundant;
|
|||||||
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: cannot specify ROW_FORMAT = REDUNDANT with KEY_BLOCK_SIZE.
|
Warning 1478 InnoDB: cannot specify ROW_FORMAT = REDUNDANT with KEY_BLOCK_SIZE.
|
||||||
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
||||||
create table t3 (id int primary key) engine = innodb
|
create table t3 (id int primary key) engine = innodb
|
||||||
key_block_size = 8 row_format = compact;
|
key_block_size = 8 row_format = compact;
|
||||||
ERROR HY000: Can't create table 'test.t3' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t3' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: cannot specify ROW_FORMAT = COMPACT with KEY_BLOCK_SIZE.
|
Warning 1478 InnoDB: cannot specify ROW_FORMAT = COMPACT with KEY_BLOCK_SIZE.
|
||||||
Error 1005 Can't create table 'test.t3' (errno: 1478)
|
Error 1005 Can't create table 'test.t3' (errno: 1478)
|
||||||
create table t4 (id int primary key) engine = innodb
|
create table t4 (id int primary key) engine = innodb
|
||||||
key_block_size = 8 row_format = dynamic;
|
key_block_size = 8 row_format = dynamic;
|
||||||
ERROR HY000: Can't create table 'test.t4' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t4' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: cannot specify ROW_FORMAT = DYNAMIC with KEY_BLOCK_SIZE.
|
Warning 1478 InnoDB: cannot specify ROW_FORMAT = DYNAMIC with KEY_BLOCK_SIZE.
|
||||||
Error 1005 Can't create table 'test.t4' (errno: 1478)
|
Error 1005 Can't create table 'test.t4' (errno: 1478)
|
||||||
create table t5 (id int primary key) engine = innodb
|
create table t5 (id int primary key) engine = innodb
|
||||||
key_block_size = 8 row_format = default;
|
key_block_size = 8 row_format = default;
|
||||||
ERROR HY000: Can't create table 'test.t5' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t5' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: cannot specify ROW_FORMAT = COMPACT with KEY_BLOCK_SIZE.
|
Warning 1478 InnoDB: cannot specify ROW_FORMAT = COMPACT with KEY_BLOCK_SIZE.
|
||||||
Error 1005 Can't create table 'test.t5' (errno: 1478)
|
Error 1005 Can't create table 'test.t5' (errno: 1478)
|
||||||
SELECT table_schema, table_name, row_format
|
SELECT table_schema, table_name, row_format
|
||||||
FROM information_schema.tables WHERE engine='innodb';
|
FROM information_schema.tables WHERE engine='innodb';
|
||||||
@ -268,24 +268,24 @@ key_block_size = 9 row_format = redundant;
|
|||||||
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
Warning 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
||||||
Error 1478 InnoDB: cannot specify ROW_FORMAT = REDUNDANT with KEY_BLOCK_SIZE.
|
Warning 1478 InnoDB: cannot specify ROW_FORMAT = REDUNDANT with KEY_BLOCK_SIZE.
|
||||||
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
||||||
create table t2 (id int primary key) engine = innodb
|
create table t2 (id int primary key) engine = innodb
|
||||||
key_block_size = 9 row_format = compact;
|
key_block_size = 9 row_format = compact;
|
||||||
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
Warning 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
||||||
Error 1478 InnoDB: cannot specify ROW_FORMAT = COMPACT with KEY_BLOCK_SIZE.
|
Warning 1478 InnoDB: cannot specify ROW_FORMAT = COMPACT with KEY_BLOCK_SIZE.
|
||||||
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
||||||
create table t2 (id int primary key) engine = innodb
|
create table t2 (id int primary key) engine = innodb
|
||||||
key_block_size = 9 row_format = dynamic;
|
key_block_size = 9 row_format = dynamic;
|
||||||
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
Warning 1478 InnoDB: invalid KEY_BLOCK_SIZE = 9. Valid values are [1, 2, 4, 8, 16]
|
||||||
Error 1478 InnoDB: cannot specify ROW_FORMAT = DYNAMIC with KEY_BLOCK_SIZE.
|
Warning 1478 InnoDB: cannot specify ROW_FORMAT = DYNAMIC with KEY_BLOCK_SIZE.
|
||||||
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
||||||
SELECT table_schema, table_name, row_format
|
SELECT table_schema, table_name, row_format
|
||||||
FROM information_schema.tables WHERE engine='innodb';
|
FROM information_schema.tables WHERE engine='innodb';
|
||||||
@ -295,43 +295,43 @@ create table t1 (id int primary key) engine = innodb key_block_size = 1;
|
|||||||
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||||
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
||||||
create table t2 (id int primary key) engine = innodb key_block_size = 2;
|
create table t2 (id int primary key) engine = innodb key_block_size = 2;
|
||||||
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||||
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
||||||
create table t3 (id int primary key) engine = innodb key_block_size = 4;
|
create table t3 (id int primary key) engine = innodb key_block_size = 4;
|
||||||
ERROR HY000: Can't create table 'test.t3' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t3' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||||
Error 1005 Can't create table 'test.t3' (errno: 1478)
|
Error 1005 Can't create table 'test.t3' (errno: 1478)
|
||||||
create table t4 (id int primary key) engine = innodb key_block_size = 8;
|
create table t4 (id int primary key) engine = innodb key_block_size = 8;
|
||||||
ERROR HY000: Can't create table 'test.t4' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t4' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||||
Error 1005 Can't create table 'test.t4' (errno: 1478)
|
Error 1005 Can't create table 'test.t4' (errno: 1478)
|
||||||
create table t5 (id int primary key) engine = innodb key_block_size = 16;
|
create table t5 (id int primary key) engine = innodb key_block_size = 16;
|
||||||
ERROR HY000: Can't create table 'test.t5' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t5' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||||
Error 1005 Can't create table 'test.t5' (errno: 1478)
|
Error 1005 Can't create table 'test.t5' (errno: 1478)
|
||||||
create table t6 (id int primary key) engine = innodb row_format = compressed;
|
create table t6 (id int primary key) engine = innodb row_format = compressed;
|
||||||
ERROR HY000: Can't create table 'test.t6' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t6' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_per_table.
|
Warning 1478 InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_per_table.
|
||||||
Error 1005 Can't create table 'test.t6' (errno: 1478)
|
Error 1005 Can't create table 'test.t6' (errno: 1478)
|
||||||
create table t7 (id int primary key) engine = innodb row_format = dynamic;
|
create table t7 (id int primary key) engine = innodb row_format = dynamic;
|
||||||
ERROR HY000: Can't create table 'test.t7' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t7' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: ROW_FORMAT=DYNAMIC requires innodb_file_per_table.
|
Warning 1478 InnoDB: ROW_FORMAT=DYNAMIC requires innodb_file_per_table.
|
||||||
Error 1005 Can't create table 'test.t7' (errno: 1478)
|
Error 1005 Can't create table 'test.t7' (errno: 1478)
|
||||||
create table t8 (id int primary key) engine = innodb row_format = compact;
|
create table t8 (id int primary key) engine = innodb row_format = compact;
|
||||||
create table t9 (id int primary key) engine = innodb row_format = redundant;
|
create table t9 (id int primary key) engine = innodb row_format = redundant;
|
||||||
@ -347,43 +347,43 @@ create table t1 (id int primary key) engine = innodb key_block_size = 1;
|
|||||||
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t1' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
||||||
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
Error 1005 Can't create table 'test.t1' (errno: 1478)
|
||||||
create table t2 (id int primary key) engine = innodb key_block_size = 2;
|
create table t2 (id int primary key) engine = innodb key_block_size = 2;
|
||||||
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t2' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
||||||
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
Error 1005 Can't create table 'test.t2' (errno: 1478)
|
||||||
create table t3 (id int primary key) engine = innodb key_block_size = 4;
|
create table t3 (id int primary key) engine = innodb key_block_size = 4;
|
||||||
ERROR HY000: Can't create table 'test.t3' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t3' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
||||||
Error 1005 Can't create table 'test.t3' (errno: 1478)
|
Error 1005 Can't create table 'test.t3' (errno: 1478)
|
||||||
create table t4 (id int primary key) engine = innodb key_block_size = 8;
|
create table t4 (id int primary key) engine = innodb key_block_size = 8;
|
||||||
ERROR HY000: Can't create table 'test.t4' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t4' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
||||||
Error 1005 Can't create table 'test.t4' (errno: 1478)
|
Error 1005 Can't create table 'test.t4' (errno: 1478)
|
||||||
create table t5 (id int primary key) engine = innodb key_block_size = 16;
|
create table t5 (id int primary key) engine = innodb key_block_size = 16;
|
||||||
ERROR HY000: Can't create table 'test.t5' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t5' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
|
||||||
Error 1005 Can't create table 'test.t5' (errno: 1478)
|
Error 1005 Can't create table 'test.t5' (errno: 1478)
|
||||||
create table t6 (id int primary key) engine = innodb row_format = compressed;
|
create table t6 (id int primary key) engine = innodb row_format = compressed;
|
||||||
ERROR HY000: Can't create table 'test.t6' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t6' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_format > Antelope.
|
Warning 1478 InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_format > Antelope.
|
||||||
Error 1005 Can't create table 'test.t6' (errno: 1478)
|
Error 1005 Can't create table 'test.t6' (errno: 1478)
|
||||||
create table t7 (id int primary key) engine = innodb row_format = dynamic;
|
create table t7 (id int primary key) engine = innodb row_format = dynamic;
|
||||||
ERROR HY000: Can't create table 'test.t7' (errno: 1478)
|
ERROR HY000: Can't create table 'test.t7' (errno: 1478)
|
||||||
show warnings;
|
show warnings;
|
||||||
Level Code Message
|
Level Code Message
|
||||||
Error 1478 InnoDB: ROW_FORMAT=DYNAMIC requires innodb_file_format > Antelope.
|
Warning 1478 InnoDB: ROW_FORMAT=DYNAMIC requires innodb_file_format > Antelope.
|
||||||
Error 1005 Can't create table 'test.t7' (errno: 1478)
|
Error 1005 Can't create table 'test.t7' (errno: 1478)
|
||||||
create table t8 (id int primary key) engine = innodb row_format = compact;
|
create table t8 (id int primary key) engine = innodb row_format = compact;
|
||||||
create table t9 (id int primary key) engine = innodb row_format = redundant;
|
create table t9 (id int primary key) engine = innodb row_format = redundant;
|
||||||
|
Reference in New Issue
Block a user