Skip to content

Commit

Permalink
Fix incorrect minimum version for MariaDB. See GitHub Issues #3481.
Browse files Browse the repository at this point in the history
  • Loading branch information
campbell-m committed Aug 2, 2023
1 parent a687bd0 commit d6e2f70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/lib/MRBS/DB_mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ class DB_mysql extends DB
);

private const MIN_VERSIONS = array(
self::DB_MARIADB => '10.0.2',
self::DB_MYSQL => '5.5.3',
self::DB_PERCONA => '5.5.3'
self::DB_MARIADB => '5.5.3', // '10.0.2' recommended for multiple lock support
self::DB_MYSQL => '5.5.3', // '5.7.5' recommended for multiple lock support
self::DB_PERCONA => '5.5.3' // '5.7.5' recommended for multiple lock support
);

private const DB_NAMES = array(
Expand Down

0 comments on commit d6e2f70

Please sign in to comment.