2009-07-30 17:42:56 +05: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;
|
2009-12-22 10:35:56 +01:00
|
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'cheetah'
|
2009-07-30 17:42:56 +05:00
|
|
|
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;
|
2009-12-22 10:35:56 +01:00
|
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'ON'
|
2009-07-30 17:42:56 +05:00
|
|
|
set global innodb_file_format=off;
|
2009-12-22 10:35:56 +01:00
|
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'off'
|
2009-07-30 17:42:56 +05:00
|
|
|
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;
|
2009-12-22 10:35:56 +01:00
|
|
|
ERROR 42000: Variable 'innodb_file_format_check' can't be set to the value of 'cheetah'
|
2009-07-30 17:42:56 +05:00
|
|
|
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;
|
2009-12-22 10:35:56 +01:00
|
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'ON'
|
2009-07-30 17:42:56 +05:00
|
|
|
set global innodb_file_format=off;
|
2009-12-22 10:35:56 +01:00
|
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'off'
|
2009-07-30 17:42:56 +05:00
|
|
|
select @@innodb_file_format_check;
|
|
|
|
@@innodb_file_format_check
|
|
|
|
Barracuda
|
2010-04-16 19:19:07 +03:00
|
|
|
set global innodb_file_format_check=antelope;
|