2010-06-17 02:13:53 -07:00
|
|
|
set @old_innodb_file_format_max=@@innodb_file_format_max;
|
|
|
|
select @old_innodb_file_format_max;
|
|
|
|
@old_innodb_file_format_max
|
2009-11-30 17:26:21 +05:30
|
|
|
Antelope
|
2010-06-17 02:13:53 -07:00
|
|
|
set global innodb_file_format_max = Barracuda;
|
|
|
|
select @@innodb_file_format_max;
|
|
|
|
@@innodb_file_format_max
|
2009-11-30 17:26:21 +05:30
|
|
|
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
|
|
|
|
set global innodb_file_format_max = @old_innodb_file_format_max;
|
|
|
|
select @@innodb_file_format_max;
|
|
|
|
@@innodb_file_format_max
|
2009-11-30 17:26:21 +05:30
|
|
|
Antelope
|
2010-06-17 02:13:53 -07:00
|
|
|
set global innodb_file_format_max = cheetah;
|
|
|
|
ERROR 42000: Variable 'innodb_file_format_max' can't be set to the value of 'cheetah'
|
|
|
|
set global innodb_file_format_max = Bear;
|
|
|
|
ERROR 42000: Variable 'innodb_file_format_max' can't be set to the value of 'Bear'
|
|
|
|
set global innodb_file_format_max = on;
|
|
|
|
ERROR 42000: Variable 'innodb_file_format_max' can't be set to the value of 'ON'
|
|
|
|
set global innodb_file_format_max = off;
|
|
|
|
ERROR 42000: Variable 'innodb_file_format_max' can't be set to the value of 'off'
|