com.hazelcast.org.apache.calcite.rel.logical.LogicalAggregate Maven / Gradle / Ivy
/*
* 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.
*/
package com.hazelcast.org.apache.calcite.rel.logical;
import com.hazelcast.org.apache.calcite.plan.Convention;
import com.hazelcast.org.apache.calcite.plan.RelOptCluster;
import com.hazelcast.org.apache.calcite.plan.RelTraitSet;
import com.hazelcast.org.apache.calcite.rel.RelInput;
import com.hazelcast.org.apache.calcite.rel.RelNode;
import com.hazelcast.org.apache.calcite.rel.RelShuttle;
import com.hazelcast.org.apache.calcite.rel.core.Aggregate;
import com.hazelcast.org.apache.calcite.rel.core.AggregateCall;
import com.hazelcast.org.apache.calcite.rel.hint.RelHint;
import com.hazelcast.org.apache.calcite.util.ImmutableBitSet;
import com.hazelcast.com.google.common.collect.ImmutableList;
import com.hazelcast.org.checkerframework.checker.nullness.qual.Nullable;
import java.util.List;
/**
* LogicalAggregate
is a relational operator which eliminates
* duplicates and computes totals.
*
* Rules:
*
*
* - {@link com.hazelcast.org.apache.calcite.rel.rules.AggregateProjectPullUpConstantsRule}
*
- {@link com.hazelcast.org.apache.calcite.rel.rules.AggregateExpandDistinctAggregatesRule}
*
- {@link com.hazelcast.org.apache.calcite.rel.rules.AggregateReduceFunctionsRule}.
*
*/
public final class LogicalAggregate extends Aggregate {
//~ Constructors -----------------------------------------------------------
/**
* Creates a LogicalAggregate.
*
* Use {@link #create} unless you know what you're doing.
*
* @param cluster Cluster that this relational expression belongs to
* @param traitSet Traits
* @param hints Hints for this relational expression
* @param input Input relational expression
* @param groupSet Bit set of grouping fields
* @param groupSets Grouping sets, or null to use just {@code groupSet}
* @param aggCalls Array of aggregates to compute, not null
*/
public LogicalAggregate(
RelOptCluster cluster,
RelTraitSet traitSet,
List hints,
RelNode input,
ImmutableBitSet groupSet,
@Nullable List groupSets,
List aggCalls) {
super(cluster, traitSet, hints, input, groupSet, groupSets, aggCalls);
}
@Deprecated // to be removed before 2.0
public LogicalAggregate(
RelOptCluster cluster,
RelTraitSet traitSet,
RelNode input,
ImmutableBitSet groupSet,
List groupSets,
List aggCalls) {
this(cluster, traitSet, ImmutableList.of(), input, groupSet, groupSets, aggCalls);
}
@Deprecated // to be removed before 2.0
public LogicalAggregate(RelOptCluster cluster, RelTraitSet traitSet,
RelNode input, boolean indicator, ImmutableBitSet groupSet,
List groupSets, List aggCalls) {
super(cluster, traitSet, ImmutableList.of(), input, groupSet, groupSets, aggCalls);
checkIndicator(indicator);
}
@Deprecated // to be removed before 2.0
public LogicalAggregate(RelOptCluster cluster,
RelNode input, boolean indicator, ImmutableBitSet groupSet,
List groupSets, List aggCalls) {
super(cluster, cluster.traitSetOf(Convention.NONE), ImmutableList.of(), input, groupSet,
groupSets, aggCalls);
checkIndicator(indicator);
}
/**
* Creates a LogicalAggregate by parsing serialized output.
*/
public LogicalAggregate(RelInput input) {
super(input);
}
/** Creates a LogicalAggregate. */
public static LogicalAggregate create(final RelNode input,
List hints,
ImmutableBitSet groupSet,
@Nullable List groupSets,
List aggCalls) {
return create_(input, hints, groupSet, groupSets, aggCalls);
}
@Deprecated // to be removed before 2.0
public static LogicalAggregate create(final RelNode input,
ImmutableBitSet groupSet,
List groupSets,
List aggCalls) {
return create_(input, ImmutableList.of(), groupSet, groupSets, aggCalls);
}
@Deprecated // to be removed before 2.0
public static LogicalAggregate create(final RelNode input,
boolean indicator,
ImmutableBitSet groupSet,
List groupSets,
List aggCalls) {
checkIndicator(indicator);
return create_(input, ImmutableList.of(), groupSet, groupSets, aggCalls);
}
private static LogicalAggregate create_(final RelNode input,
List hints,
ImmutableBitSet groupSet,
@Nullable List groupSets,
List aggCalls) {
final RelOptCluster cluster = input.getCluster();
final RelTraitSet traitSet = cluster.traitSetOf(Convention.NONE);
return new LogicalAggregate(cluster, traitSet, hints, input, groupSet,
groupSets, aggCalls);
}
//~ Methods ----------------------------------------------------------------
@Override public LogicalAggregate copy(RelTraitSet traitSet, RelNode input,
ImmutableBitSet groupSet,
@Nullable List groupSets, List aggCalls) {
assert traitSet.containsIfApplicable(Convention.NONE);
return new LogicalAggregate(getCluster(), traitSet, hints, input,
groupSet, groupSets, aggCalls);
}
@Override public RelNode accept(RelShuttle shuttle) {
return shuttle.visit(this);
}
@Override public RelNode withHints(List hintList) {
return new LogicalAggregate(getCluster(), traitSet, hintList, input,
groupSet, groupSets, aggCalls);
}
}