REPO-3625 / MNT-19701: Change JOIN to LEFT JOIN to the alf_store table.

This commit is contained in:
Ancuta Morarasu
2018-07-17 13:09:22 +03:00
parent cadf270957
commit 4f228d1af1

View File

@@ -1159,7 +1159,7 @@
join alf_node parentNode on (parentNode.id = assoc.parent_node_id)
join alf_store parentStore on (parentStore.id = parentNode.store_id)
join alf_node childNode on (childNode.id = assoc.child_node_id)
join alf_store childStore on (childStore.id = childNode.store_id)
left join alf_store childStore on (childStore.id = childNode.store_id)
)
LEFT OUTER JOIN
(