Fix Issue #2816 - MySQL version typo

This commit is contained in:
Hypolite Petovan 2016-10-03 19:17:40 -04:00
parent 0e8ae82a5c
commit a052fe4a98
1 changed files with 2 additions and 2 deletions

View File

@ -165,8 +165,8 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
if ($action)
@$db->q($sql_config);
// MySQL >= 5.7 doesn't support the IGNORE keyword in ALTER TABLE statements
if (version_compare($db->getdb()->server_info, '5.7') >= 0) {
// MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
if (version_compare($db->getdb()->server_info, '5.7.4') >= 0) {
$ignore = '';
}else {
$ignore = ' IGNORE';