Skip to content

Commit

Permalink
NMS-16510: added braces [ci skip].
Browse files Browse the repository at this point in the history
  • Loading branch information
MusaidAli committed Oct 1, 2024
1 parent 52d0293 commit 1bf283f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -713,8 +713,9 @@ private String parseRule(final List<Table> tables, final String rule) throws Fil
}
regex.appendTail(tempStringBuff);
sqlRule = tempStringBuff.toString();
if(!sqlRule.isEmpty())
return "WHERE " + sqlRule;
if (!sqlRule.isEmpty()) {
return "WHERE " + sqlRule;
}
}
return "";
}
Expand Down

0 comments on commit 1bf283f

Please sign in to comment.