Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
DRILL-6375 : Support for ANY_VALUE aggregate function
closes #1256
- Loading branch information
Showing
37 changed files
with
1,265 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
<@pp.dropOutputFile /> | ||
|
||
|
||
|
||
<#list aggrtypes1.aggrtypes as aggrtype> | ||
<@pp.changeOutputFile name="/org/apache/drill/exec/expr/fn/impl/gaggr/${aggrtype.className}ComplexFunctions.java" /> | ||
|
||
<#include "/@includes/license.ftl" /> | ||
|
||
/* | ||
* This class is generated using freemarker and the ${.template_name} template. | ||
*/ | ||
|
||
<#-- A utility class that is used to generate java code for aggr functions that maintain a single --> | ||
<#-- running counter to hold the result. This includes: ANY_VALUE. --> | ||
|
||
package org.apache.drill.exec.expr.fn.impl.gaggr; | ||
|
||
import org.apache.drill.exec.expr.DrillAggFunc; | ||
import org.apache.drill.exec.expr.annotations.FunctionTemplate; | ||
import org.apache.drill.exec.expr.annotations.FunctionTemplate.FunctionScope; | ||
import org.apache.drill.exec.expr.annotations.Output; | ||
import org.apache.drill.exec.expr.annotations.Param; | ||
import org.apache.drill.exec.expr.annotations.Workspace; | ||
import org.apache.drill.exec.expr.holders.*; | ||
import org.apache.drill.exec.vector.complex.reader.FieldReader; | ||
import org.apache.drill.exec.vector.complex.MapUtility; | ||
import org.apache.drill.exec.vector.complex.writer.*; | ||
import org.apache.drill.exec.vector.complex.writer.BaseWriter.*; | ||
|
||
@SuppressWarnings("unused") | ||
|
||
public class ${aggrtype.className}ComplexFunctions { | ||
static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(${aggrtype.className}ComplexFunctions.class); | ||
|
||
<#list aggrtype.types as type> | ||
<#if type.major == "Complex"> | ||
|
||
@FunctionTemplate(name = "${aggrtype.funcName}", scope = FunctionTemplate.FunctionScope.POINT_AGGREGATE) | ||
public static class ${type.inputType}${aggrtype.className} implements DrillAggFunc{ | ||
@Param ${type.inputType}Holder inHolder; | ||
@Workspace BigIntHolder nonNullCount; | ||
@Output ComplexWriter writer; | ||
|
||
public void setup() { | ||
nonNullCount = new BigIntHolder(); | ||
nonNullCount.value = 0; | ||
} | ||
|
||
@Override | ||
public void add() { | ||
<#if type.inputType?starts_with("Nullable")> | ||
sout: { | ||
if (inHolder.isSet == 0) { | ||
// processing nullable input and the value is null, so don't do anything... | ||
break sout; | ||
} | ||
</#if> | ||
<#if aggrtype.funcName == "any_value"> | ||
<#if type.runningType?starts_with("Map")> | ||
if (nonNullCount.value == 0) { | ||
org.apache.drill.exec.expr.fn.impl.MappifyUtility.createMap(inHolder.reader, writer, "any_value"); | ||
} | ||
<#elseif type.runningType?starts_with("RepeatedMap")> | ||
if (nonNullCount.value == 0) { | ||
org.apache.drill.exec.expr.fn.impl.MappifyUtility.createRepeatedMapOrList(inHolder.reader, writer, "any_value"); | ||
} | ||
<#elseif type.runningType?starts_with("List")> | ||
if (nonNullCount.value == 0) { | ||
org.apache.drill.exec.expr.fn.impl.MappifyUtility.createList(inHolder.reader, writer, "any_value"); | ||
} | ||
<#elseif type.runningType?starts_with("RepeatedList")> | ||
if (nonNullCount.value == 0) { | ||
org.apache.drill.exec.expr.fn.impl.MappifyUtility.createRepeatedMapOrList(inHolder.reader, writer, "any_value"); | ||
} | ||
<#elseif type.runningType?starts_with("Repeated")> | ||
if (nonNullCount.value == 0) { | ||
org.apache.drill.exec.expr.fn.impl.MappifyUtility.createList(inHolder.reader, writer, "any_value"); | ||
} | ||
</#if> | ||
</#if> | ||
nonNullCount.value = 1; | ||
<#if type.inputType?starts_with("Nullable")> | ||
} // end of sout block | ||
</#if> | ||
} | ||
|
||
@Override | ||
public void output() { | ||
//Do nothing since the complex writer takes care of everything! | ||
} | ||
|
||
@Override | ||
public void reset() { | ||
<#if aggrtype.funcName == "any_value"> | ||
nonNullCount.value = 0; | ||
</#if> | ||
} | ||
} | ||
</#if> | ||
</#list> | ||
} | ||
</#list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.