-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 8: Add support for MariaDB version 10.5.
- Loading branch information
Showing
4 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[client] | ||
default-character-set = utf8mb4 | ||
|
||
[mysql] | ||
default-character-set = utf8mb4 | ||
|
||
[mysqld] | ||
# Use multi-byte UTF (utf8mb4) encoding by default (supports emojis, Asian symbols, mathematical symbols, etc.) | ||
character_set_server = utf8mb4 | ||
collation_server = utf8mb4_unicode_ci | ||
init_connect = 'SET NAMES utf8mb4' | ||
|
||
# Set innodb as default | ||
default_storage_engine = InnoDB | ||
|
||
innodb_buffer_pool_size = 256M | ||
innodb_log_buffer_size = 8M | ||
innodb_log_file_size = 128MB | ||
|
||
innodb_file_per_table = 1 | ||
|
||
# See https://github.com/docksal/service-db/pull/1 | ||
#innodb_file_format = Barracuda | ||
#innodb_large_prefix = 1 | ||
|
||
# Max packets | ||
max_allowed_packet = 128M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
character_set_client utf8mb4 | ||
character_set_connection utf8mb4 | ||
character_set_database utf8mb4 | ||
character_set_filesystem binary | ||
character_set_results utf8mb4 | ||
character_set_server utf8mb4 | ||
character_set_system utf8 | ||
collation_connection utf8mb4_general_ci | ||
collation_database utf8mb4_unicode_ci | ||
collation_server utf8mb4_unicode_ci | ||
default_storage_engine InnoDB | ||
init_connect SET NAMES utf8mb4 | ||
innodb_buffer_pool_size 268435456 | ||
innodb_file_per_table ON | ||
innodb_flush_log_at_trx_commit 1 | ||
innodb_log_buffer_size 8388608 | ||
innodb_log_file_size 134217728 | ||
max_allowed_packet 134217728 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters