mirror of
https://github.com/MariaDB/server.git
synced 2025-07-21 21:22:27 +03:00
Replace most occurrences of the REFMAN macro. For some pages there is no replacement yet.
67 lines
3.2 KiB
Plaintext
67 lines
3.2 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 https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
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 https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
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 https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
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 https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
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 https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
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 https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
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 https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
set global innodb_file_format_check=off;
|
|
ERROR HY000: Variable 'innodb_file_format_check' is a read only variable
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format is deprecated and the parameter may be removed in future releases. See https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|
|
Warnings:
|
|
Warning 131 Using innodb_file_format_max is deprecated and the parameter may be removed in future releases. See https://mariadb.com/kb/en/library/xtradbinnodb-file-format/
|