mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
* Backup/MySQL: limited index length was not reported for PHP mysqli driver
This commit is contained in:
parent
75c7d36a31
commit
41d9b049f2
@ -320,7 +320,8 @@ class ADODB_mysqli extends ADOConnection {
|
||||
);
|
||||
}
|
||||
|
||||
$indexes[$row[2]]['columns'][$row[3] - 1] = $row[4];
|
||||
$indexes[$row[2]]['columns'][$row[3] - 1] = $row[4].
|
||||
(is_numeric($row[7]) ? '('.(int)$row[7].')' : '');
|
||||
}
|
||||
|
||||
// sort columns by order in the index
|
||||
|
Loading…
Reference in New Issue
Block a user