Merge pull request #10338 from annando/issue-9923
Issue 9923: Fix DB Error 1055
This commit is contained in:
commit
15581ba91f
|
@ -170,8 +170,10 @@ class Index extends BaseSearch
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($uriids)) {
|
if (!empty($uriids)) {
|
||||||
$params = ['order' => ['id' => true], 'group_by' => ['uri-id']];
|
$condition = ["(`uid` = ? OR (`uid` = ? AND NOT `global`))", 0, local_user()];
|
||||||
$items = Post::toArray(Post::selectForUser(local_user(), Item::DISPLAY_FIELDLIST, ['uri-id' => $uriids], $params));
|
$condition = DBA::mergeConditions($condition, ['uri-id' => $uriids]);
|
||||||
|
$params = ['order' => ['id' => true]];
|
||||||
|
$items = Post::toArray(Post::selectForUser(local_user(), Item::DISPLAY_FIELDLIST, $condition, $params));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($items)) {
|
if (empty($items)) {
|
||||||
|
|
|
@ -119,7 +119,7 @@ class ExpirePosts
|
||||||
Logger::notice('Adding missing entries');
|
Logger::notice('Adding missing entries');
|
||||||
|
|
||||||
$rows = 0;
|
$rows = 0;
|
||||||
$userposts = DBA::select('post-user', [], ["`uri-id` not in (select `uri-id` from `post`)"], ['group_by' => ['uri-id']]);
|
$userposts = DBA::select('post-user', [], ["`uri-id` not in (select `uri-id` from `post`)"]);
|
||||||
while ($fields = DBA::fetch($userposts)) {
|
while ($fields = DBA::fetch($userposts)) {
|
||||||
$post_fields = DBStructure::getFieldsForTable('post', $fields);
|
$post_fields = DBStructure::getFieldsForTable('post', $fields);
|
||||||
DBA::insert('post', $post_fields, Database::INSERT_IGNORE);
|
DBA::insert('post', $post_fields, Database::INSERT_IGNORE);
|
||||||
|
@ -133,7 +133,7 @@ class ExpirePosts
|
||||||
}
|
}
|
||||||
|
|
||||||
$rows = 0;
|
$rows = 0;
|
||||||
$userposts = DBA::select('post-user', [], ["`gravity` = ? AND `uri-id` not in (select `uri-id` from `post-thread`)", GRAVITY_PARENT], ['group_by' => ['uri-id']]);
|
$userposts = DBA::select('post-user', [], ["`gravity` = ? AND `uri-id` not in (select `uri-id` from `post-thread`)", GRAVITY_PARENT]);
|
||||||
while ($fields = DBA::fetch($userposts)) {
|
while ($fields = DBA::fetch($userposts)) {
|
||||||
$post_fields = DBStructure::getFieldsForTable('post-thread', $fields);
|
$post_fields = DBStructure::getFieldsForTable('post-thread', $fields);
|
||||||
$post_fields['commented'] = $post_fields['changed'] = $post_fields['created'];
|
$post_fields['commented'] = $post_fields['changed'] = $post_fields['created'];
|
||||||
|
|
Loading…
Reference in a new issue