[#7171] OSS version fix
This commit is contained in:
parent
42ee53b027
commit
681259cd6e
@ -5196,12 +5196,12 @@ final class ParserImpl implements Parser {
|
||||
}
|
||||
|
||||
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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user