mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
branches/zip: innodb-zip.result: Adjust to the change made in r2368.
This commit is contained in:
parent
eaf721e066
commit
c459a90311
1 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@ create table t00(a int primary key) engine=innodb
|
|||
key_block_size=4 row_format=compressed;
|
||||
Warnings:
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format>0.
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format=1.
|
||||
Warning 1478 InnoDB: ignoring KEY_BLOCK_SIZE=4.
|
||||
Warning 1478 InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_per_table.
|
||||
Warning 1478 InnoDB: assuming ROW_FORMAT=COMPACT.
|
||||
|
@ -21,19 +21,19 @@ create table t3(a int primary key) engine=innodb row_format=compact;
|
|||
create table t4(a int primary key) engine=innodb key_block_size=9;
|
||||
Warnings:
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format>0.
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format=1.
|
||||
Warning 1478 InnoDB: ignoring KEY_BLOCK_SIZE=9.
|
||||
create table t5(a int primary key) engine=innodb
|
||||
key_block_size=1 row_format=redundant;
|
||||
Warnings:
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format>0.
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format=1.
|
||||
Warning 1478 InnoDB: ignoring KEY_BLOCK_SIZE=1.
|
||||
set global innodb_file_per_table=on;
|
||||
create table t6(a int primary key) engine=innodb
|
||||
key_block_size=1 row_format=redundant;
|
||||
Warnings:
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format>0.
|
||||
Warning 1478 InnoDB: KEY_BLOCK_SIZE requires innodb_file_format=1.
|
||||
Warning 1478 InnoDB: ignoring KEY_BLOCK_SIZE=1.
|
||||
set global innodb_file_format=1;
|
||||
create table t7(a int primary key) engine=innodb
|
||||
|
|
Loading…
Add table
Reference in a new issue