66 lines
3.1 KiB
Plaintext
66 lines
3.1 KiB
Plaintext
select @@innodb_file_format;
|
|
@@innodb_file_format
|
|
Barracuda
|
|
select @@innodb_file_format_check;
|
|
@@innodb_file_format_check
|
|
1
|
|
select @@innodb_file_format_max;
|
|
@@innodb_file_format_max
|
|
Barracuda
|
|
set global innodb_file_format=antelope;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|
|
set global innodb_file_format=barracuda;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|
|
set global innodb_file_format=cheetah;
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'cheetah'
|
|
select @@innodb_file_format;
|
|
@@innodb_file_format
|
|
Barracuda
|
|
set global innodb_file_format=default;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|
|
select @@innodb_file_format;
|
|
@@innodb_file_format
|
|
Barracuda
|
|
set global innodb_file_format=on;
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'ON'
|
|
set global innodb_file_format=off;
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'off'
|
|
select @@innodb_file_format;
|
|
@@innodb_file_format
|
|
Barracuda
|
|
set global innodb_file_format_max=antelope;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format_max is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|
|
set global innodb_file_format_max=barracuda;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format_max is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|
|
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
|
|
Barracuda
|
|
set global innodb_file_format_max=default;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format_max is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|
|
select @@innodb_file_format_max;
|
|
@@innodb_file_format_max
|
|
Antelope
|
|
set global innodb_file_format=on;
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'ON'
|
|
set global innodb_file_format=off;
|
|
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'off'
|
|
select @@innodb_file_format_max;
|
|
@@innodb_file_format_max
|
|
Antelope
|
|
set global innodb_file_format_max=antelope;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format_max is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|
|
set global innodb_file_format_check=off;
|
|
ERROR HY000: Variable 'innodb_file_format_check' is a read only variable
|
|
SET GLOBAL innodb_file_format=Barracuda;
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format is deprecated and the parameter may be removed in future releases. See http://dev.mysql.com/doc/refman/5.7/en/innodb-file-format.html
|