mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
bug#56318: Replication aborts with ER_TOO_BIG_ROWSIZE if innodb
parameters don't match Revert the changes of the default values of innodb_file_per_table and innobase_file_format in 5.5, until WL#5135 is implemented.
This commit is contained in:
@ -10835,13 +10835,13 @@ static MYSQL_SYSVAR_ULONG(fast_shutdown, innobase_fast_shutdown,
|
||||
static MYSQL_SYSVAR_BOOL(file_per_table, srv_file_per_table,
|
||||
PLUGIN_VAR_NOCMDARG,
|
||||
"Stores each InnoDB table to an .ibd file in the database dir.",
|
||||
NULL, NULL, TRUE);
|
||||
NULL, NULL, FALSE);
|
||||
|
||||
static MYSQL_SYSVAR_STR(file_format, innobase_file_format_name,
|
||||
PLUGIN_VAR_RQCMDARG,
|
||||
"File format to use for new tables in .ibd files.",
|
||||
innodb_file_format_name_validate,
|
||||
innodb_file_format_name_update, "Barracuda");
|
||||
innodb_file_format_name_update, "Antelope");
|
||||
|
||||
/* "innobase_file_format_check" decides whether we would continue
|
||||
booting the server if the file format stamped on the system
|
||||
|
Reference in New Issue
Block a user