Skip to content

Commit

Permalink
PEPPER-1479 . pancan block visibility pex updates to handle osteo spa…
Browse files Browse the repository at this point in the history
…nish redirect
  • Loading branch information
Sampath K. Settipalli committed Oct 20, 2024
1 parent 1b10ce8 commit b96987a
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,11 @@ private interface SqlHelper extends SqlObject {
+ "where workflow_transition_id in (<workflowTransitionIds>)")
int deleteOsteoRedirectWorkflowTransitions(@BindList("workflowTransitionIds") List<Long> workflowTransitionIds);

@SqlUpdate("update expression\n" +
"set expression_text = REPLACE(expression_text, :currentExpr, :newExpr) "
@SqlUpdate("update expression\n"
+ "set expression_text = REPLACE(expression_text, :currentExpr, :newExpr) "
+ "where expression_text like :searchExpr")
int updatePancanOsteoBlockPex(@Bind("searchExpr") String searchExpr, @Bind("currentExpr") String currentExpr, @Bind("newExpr") String newExpr);
int updatePancanOsteoBlockPex(@Bind("searchExpr") String searchExpr, @Bind("currentExpr") String currentExpr,
@Bind("newExpr") String newExpr);

}

Expand Down

0 comments on commit b96987a

Please sign in to comment.