Generate field_list only when needed

https://github.com/friendica/friendica/pull/3442/files#r115137722
This commit is contained in:
Alexandre Alapetite 2017-05-07 11:07:34 +02:00
parent f838430535
commit 354531bfa6
1 changed files with 6 additions and 4 deletions

View File

@ -399,11 +399,13 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
} }
$field_list = ''; $field_list = '';
foreach ($structure['fields'] AS $fieldname => $parameters) { if ($is_unique && $ignore == '') {
$field_list .= 'ANY_VALUE(`' . $fieldname . '`),'; foreach ($structure['fields'] AS $fieldname => $parameters) {
$field_list .= 'ANY_VALUE(`' . $fieldname . '`),';
}
$field_list = rtrim($field_list, ',');
} }
$field_list = rtrim($field_list, ',');
if ($verbose) { if ($verbose) {
// Ensure index conversion to unique removes duplicates // Ensure index conversion to unique removes duplicates
if ($is_unique) { if ($is_unique) {