Skip to content
Snippets Groups Projects
Commit 0513413c authored by jurgenhaas's avatar jurgenhaas
Browse files

Get ready for MySQL 8

parent 80761bac
No related branches found
No related tags found
No related merge requests found
......@@ -62,13 +62,23 @@ innodb_io_capacity_max = {{ mysql_innodb_io_capacity_max }}
# the first time they are touched
myisam-recover-options = BACKUP
max_connections = {{ mysql_max_connections }}
{% if mysql_version.stdout is match(".* Ver 8.*") %}
#internal_tmp_disk_storage_engine = {{ mysql_internal_tmp_disk_storage_engine }}
{% else %}
internal_tmp_disk_storage_engine = {{ mysql_internal_tmp_disk_storage_engine }}
{% endif %}
#
# * Query Cache Configuration
#
{% if mysql_version.stdout is match(".* Ver 8.*") %}
#query_cache_limit = {{ mysql_query_cache_limit }}
#query_cache_size = {{ mysql_query_cache_size }}
#query_cache_type = 0
{% else %}
query_cache_limit = {{ mysql_query_cache_limit }}
query_cache_size = {{ mysql_query_cache_size }}
query_cache_type = 0
{% endif %}
#
# * Logging and Replication
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment