Skip to content

Commit

Permalink
[#7171] OSS version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Mar 9, 2018
1 parent 42ee53b commit 681259c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jOOQ/src/main/java/org/jooq/impl/ParserImpl.java
Expand Up @@ -5196,12 +5196,12 @@ private static final Field<?> parseAggregateFunctionIf(ParserContext ctx) {
}

private static final Field<?> parseAggregateFunctionIf(ParserContext ctx, boolean basic) {
AggregateFunction<?> agg;
AggregateFilterStep<?> filter;
WindowBeforeOverStep<?> over;
AggregateFunction<?> agg = null;
AggregateFilterStep<?> filter = null;
WindowBeforeOverStep<?> over = null;
Object keep = null;
Field<?> result;
Condition condition;
Field<?> result = null;
Condition condition = null;

keep = over = filter = agg = parseCountIf(ctx);
if (filter == null)
Expand Down

0 comments on commit 681259c

Please sign in to comment.