Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ abstract class HashAggregateExecTransformer(
* @return
* a project rel
*/
def applyExtractStruct(
private def applyExtractStruct(
context: SubstraitContext,
aggRel: RelNode,
operatorId: Long,
Expand Down Expand Up @@ -260,7 +260,7 @@ abstract class HashAggregateExecTransformer(
* Return the output types after partial aggregation through Velox.
* @return
*/
def getPartialAggOutTypes: JList[TypeNode] = {
private def getPartialAggOutTypes: JList[TypeNode] = {
val typeNodeList = new JArrayList[TypeNode]()
groupingExpressions.foreach(
expression => {
Expand Down Expand Up @@ -669,13 +669,13 @@ abstract class HashAggregateExecTransformer(
object VeloxAggregateFunctionsBuilder {

/**
* Create an scalar function for the input aggregate function.
* Create a scalar function for the input aggregate function.
* @param args:
* the function map.
* @param aggregateFunc:
* the input aggregate function.
* @param forMergeCompanion:
* whether this is a special case to solve mixed aggregation phases.
* @param mode:
* the mode of input aggregate function.
* @return
*/
def create(
Expand Down