Skip to content

Commit

Permalink
🛠️: use join instead of outerjoin in workflow list index
Browse files Browse the repository at this point in the history
Co-authored-by: Marius van den Beek <[email protected]>
  • Loading branch information
itisAliRH and mvdbeek authored Sep 18, 2024
1 parent c1abcd7 commit c1cf7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def name_filter(term):
stmt = stmt.where(StoredWorkflowUserShareAssociation.user == user)
elif q == "bookmarked":
stmt = (
stmt.outerjoin(model.StoredWorkflowMenuEntry)
stmt.join(model.StoredWorkflowMenuEntry)
.where(model.StoredWorkflowMenuEntry.stored_workflow_id == StoredWorkflow.id)
.where(model.StoredWorkflowMenuEntry.user_id == user.id)
)
Expand Down

0 comments on commit c1cf7c1

Please sign in to comment.