Skip to content

Commit 4ae123e

Browse files
authored
Merge pull request #1107 from ernstae/fix/mysql-8.0-invalid-options
Removing query_cache ops that are no longer supported in MySQL >= 8.0
2 parents 32325f3 + 4ff6107 commit 4ae123e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

manifests/params.pp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,12 +455,18 @@
455455
},
456456
'mysqld-5.5' => {
457457
'myisam-recover' => 'BACKUP',
458+
'query_cache_limit' => '1M',
459+
'query_cache_size' => '16M',
458460
},
459461
'mysqld-5.6' => {
460462
'myisam-recover-options' => 'BACKUP',
463+
'query_cache_limit' => '1M',
464+
'query_cache_size' => '16M',
461465
},
462466
'mysqld-5.7' => {
463467
'myisam-recover-options' => 'BACKUP',
468+
'query_cache_limit' => '1M',
469+
'query_cache_size' => '16M',
464470
},
465471
'mysqld' => {
466472
'basedir' => $mysql::params::basedir,

0 commit comments

Comments
 (0)