Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1896600: MariaDB <10.6 wants ON instead of 1 in config #134

Merged
merged 2 commits into from
Jun 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/mysql/bugzilla-mysql56.cnf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[mysqld]
max_allowed_packet = 64M
innodb_file_format = Barracuda
innodb_file_per_table = 1
innodb_large_prefix = 1
innodb_file_per_table = ON
innodb_large_prefix = ON

[mysql]
max_allowed_packet = 64M
4 changes: 2 additions & 2 deletions template/en/default/setup/strings.txt.pl
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ END
mysql_innodb_settings => <<'END',
Bugzilla requires the following MySQL InnoDB settings:
innodb_file_format = Barracuda
innodb_file_per_table = 1
innodb_large_prefix = 1
innodb_file_per_table = ON
innodb_large_prefix = ON
END
mysql_index_renaming => <<'END',
We are about to rename old indexes. The estimated time to complete
Expand Down
Loading