Skip to content

Commit

Permalink
ODIP #203: Retrieve workflows without workflow options fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
emelchinger committed Mar 11, 2024
1 parent 39a9b2c commit 91a50dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class WorkflowSqlFilterExpressionVisitor implements ExpressionVisitor<Str
/** SQL command parts */
private static final String SELECT_CLAUSE = "SELECT DISTINCT p.* ";
private static final String SELECT_COUNT_CLAUSE = "SELECT count(DISTINCT p.*) ";
private static final String FROM_CLAUSE = "FROM workflow p\n" + "JOIN workflow_option wo ON wo.workflow_id = p.id\n"
private static final String FROM_CLAUSE = "FROM workflow p\n" + "LEFT OUTER JOIN workflow_option wo ON wo.workflow_id = p.id\n"
+ "LEFT OUTER JOIN product_class ipc ON p.input_product_class_id = ipc.id\n"
+ "LEFT OUTER JOIN product_class opc ON p.output_product_class_id = opc.id\n"
+ "LEFT OUTER JOIN configured_processor cp ON p.configured_processor_id = cp.id\n"
Expand Down
2 changes: 1 addition & 1 deletion logging/src/site/resources/logging.html

Large diffs are not rendered by default.

0 comments on commit 91a50dc

Please sign in to comment.