Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhengguanLi committed Jun 27, 2024
1 parent 69bc21f commit 848822e
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -633,17 +633,14 @@ public boolean visit(SQLBlockStatement x) {
} else {
print0(ucase ? "END;" : "end;");
}
println();

if (x.isDollarQuoted()) {
println();
print(x.getDollarQuoteTagName() == null ? "$$" : "$" + x.getDollarQuoteTagName() + "$");
if (x.getLanguage() != null) {
print0(" LANGUAGE " + x.getLanguage());
}
print(';');
} else {
// END;
print0(ucase ? "END;" : "end;");
}
}
return false;
Expand Down

0 comments on commit 848822e

Please sign in to comment.