Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang committed Sep 23, 2024
1 parent 797a057 commit 31c6b3b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public static void createPostgresPublicationIfNeeded(
ValidatorUtils.getSql("postgres.publication_exist"))) {
stmt.setString(1, pubName);
var res = stmt.executeQuery();
// Note: the value returned here is `pubviaroot`, If there's more than one row, the publication exists
// Note: the value returned here is `pubviaroot`, If there's more than one row, the
// publication exists
if (res.next()) {
isPubExist = true;
}
Expand Down

0 comments on commit 31c6b3b

Please sign in to comment.