[#3164] Missing formatting when rendering formatted MERGE statement's SET clause - Removed excess whitespace

This commit is contained in:
Lukas Eder 2014-04-08 15:05:12 +02:00
parent 9d230fbde8
commit 22cf47fe99

View File

@ -1163,7 +1163,7 @@ implements
// [#999] WHEN MATCHED clause is optional
if (matchedUpdate != null) {
context.formatSeparator()
.keyword("when matched then update set").sql(" ")
.keyword("when matched then update set")
.formatIndentStart()
.formatSeparator()
.visit(matchedUpdate)