Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
snuyanzin committed Aug 14, 2024
1 parent 7066a8f commit 70cb0f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ public void unparse(SqlWriter writer, int leftPrec, int rightPrec) {
databaseName.unparse(writer, leftPrec, rightPrec);
}
if (isWithLike()) {
final String prefix = isNotLike() ? "NOT " : "";
writer.keyword(String.format("%sLIKE '%s'", prefix, getLikeSqlPattern()));
final String prefix = isNotLike() ? "NOT " : "";
writer.keyword(String.format("%sLIKE '%s'", prefix, getLikeSqlPattern()));
}
}
}

0 comments on commit 70cb0f7

Please sign in to comment.