2009-07-30 17:42:56 +05:00
|
|
|
select @@innodb_file_format;
|
|
|
|
@@innodb_file_format
|
2010-10-07 06:00:22 -05:00
|
|
|
Antelope
|
2009-07-30 17:42:56 +05:00
|
|
|
select @@innodb_file_format_check;
|
|
|
|
@@innodb_file_format_check
|
2010-06-17 02:13:53 -07:00
|
|
|
1
|
|
|
|
select @@innodb_file_format_max;
|
|
|
|
@@innodb_file_format_max
|
2009-07-30 17:42:56 +05:00
|
|
|
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
|
2010-10-07 06:00:22 -05:00
|
|
|
Antelope
|
2009-07-30 17:42:56 +05:00
|
|
|
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
|
2010-10-07 06:00:22 -05:00
|
|
|
Antelope
|
2010-06-17 02:13:53 -07:00
|
|
|
set global innodb_file_format_max=antelope;
|
|
|
|
set global innodb_file_format_max=barracuda;
|
|
|
|
set global innodb_file_format_max=cheetah;
|
|
|
|
ERROR 42000: Variable 'innodb_file_format_max' can't be set to the value of 'cheetah'
|
|
|
|
select @@innodb_file_format_max;
|
|
|
|
@@innodb_file_format_max
|
2009-07-30 17:42:56 +05:00
|
|
|
Barracuda
|
2010-06-17 02:13:53 -07:00
|
|
|
set global innodb_file_format_max=default;
|
|
|
|
select @@innodb_file_format_max;
|
|
|
|
@@innodb_file_format_max
|
|
|
|
Antelope
|
2009-07-30 17:42:56 +05:00
|
|
|
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'
|
2010-06-17 02:13:53 -07:00
|
|
|
select @@innodb_file_format_max;
|
|
|
|
@@innodb_file_format_max
|
|
|
|
Antelope
|
|
|
|
set global innodb_file_format_max=antelope;
|
|
|
|
set global innodb_file_format_check=off;
|
|
|
|
ERROR HY000: Variable 'innodb_file_format_check' is a read only variable
|