2009-06-29 12:49:54 +00:00
|
|
|
-- source include/have_innodb.inc
|
|
|
|
|
|
|
|
select @@innodb_file_format;
|
|
|
|
select @@innodb_file_format_check;
|
|
|
|
set global innodb_file_format=antelope;
|
|
|
|
set global innodb_file_format=barracuda;
|
|
|
|
--error ER_WRONG_ARGUMENTS
|
|
|
|
set global innodb_file_format=cheetah;
|
|
|
|
select @@innodb_file_format;
|
|
|
|
set global innodb_file_format=default;
|
|
|
|
select @@innodb_file_format;
|
|
|
|
--error ER_WRONG_ARGUMENTS
|
|
|
|
set global innodb_file_format=on;
|
|
|
|
--error ER_WRONG_ARGUMENTS
|
|
|
|
set global innodb_file_format=off;
|
|
|
|
select @@innodb_file_format;
|
|
|
|
set global innodb_file_format_check=antelope;
|
|
|
|
set global innodb_file_format_check=barracuda;
|
|
|
|
--error ER_WRONG_ARGUMENTS
|
|
|
|
set global innodb_file_format_check=cheetah;
|
|
|
|
select @@innodb_file_format_check;
|
|
|
|
set global innodb_file_format_check=default;
|
|
|
|
select @@innodb_file_format_check;
|
|
|
|
--error ER_WRONG_ARGUMENTS
|
|
|
|
set global innodb_file_format=on;
|
|
|
|
--error ER_WRONG_ARGUMENTS
|
|
|
|
set global innodb_file_format=off;
|
|
|
|
select @@innodb_file_format_check;
|
2009-08-04 10:42:44 +00:00
|
|
|
set global innodb_file_format_check=antelope;
|