2009-09-02 18:58:17 +02:00
|
|
|
call mtr.add_suppression("InnoDB: invalid innodb_file_format_check value");
|
2009-09-23 02:06:02 +02:00
|
|
|
select @@innodb_file_format;
|
|
|
|
@@innodb_file_format
|
|
|
|
Antelope
|
|
|
|
select @@innodb_file_format_check;
|
|
|
|
@@innodb_file_format_check
|
|
|
|
Antelope
|
|
|
|
set global innodb_file_format=antelope;
|
|
|
|
set global innodb_file_format=barracuda;
|
|
|
|
set global innodb_file_format=cheetah;
|
|
|
|
ERROR HY000: Incorrect arguments to SET
|
|
|
|
select @@innodb_file_format;
|
|
|
|
@@innodb_file_format
|
|
|
|
Barracuda
|
|
|
|
set global innodb_file_format=default;
|
|
|
|
select @@innodb_file_format;
|
|
|
|
@@innodb_file_format
|
|
|
|
Antelope
|
|
|
|
set global innodb_file_format=on;
|
|
|
|
ERROR HY000: Incorrect arguments to SET
|
|
|
|
set global innodb_file_format=off;
|
|
|
|
ERROR HY000: Incorrect arguments to SET
|
|
|
|
select @@innodb_file_format;
|
|
|
|
@@innodb_file_format
|
|
|
|
Antelope
|
|
|
|
set global innodb_file_format_check=antelope;
|
|
|
|
set global innodb_file_format_check=barracuda;
|
|
|
|
set global innodb_file_format_check=cheetah;
|
|
|
|
ERROR HY000: Incorrect arguments to SET
|
|
|
|
select @@innodb_file_format_check;
|
|
|
|
@@innodb_file_format_check
|
|
|
|
Barracuda
|
|
|
|
set global innodb_file_format_check=default;
|
|
|
|
select @@innodb_file_format_check;
|
|
|
|
@@innodb_file_format_check
|
|
|
|
Barracuda
|
|
|
|
set global innodb_file_format=on;
|
|
|
|
ERROR HY000: Incorrect arguments to SET
|
|
|
|
set global innodb_file_format=off;
|
|
|
|
ERROR HY000: Incorrect arguments to SET
|
|
|
|
select @@innodb_file_format_check;
|
|
|
|
@@innodb_file_format_check
|
|
|
|
Barracuda
|
2010-01-06 13:00:14 +01:00
|
|
|
set global innodb_file_format_check=antelope;
|