Merge pull request #7321 from xaibeha/xaibeha-patch-1

Make visiting a window actually conditional on its nullity.
This commit is contained in:
Lukas Eder 2018-03-16 21:45:05 +01:00 committed by GitHub
commit f22d93f52b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,7 @@ final class WindowDefinitionImpl extends AbstractQueryPart implements WindowDefi
.visit(K_AS)
.sql(" (");
if (window != null);
if (window != null)
ctx.visit(window);
ctx.sql(')');