Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
Description
There are some undocumented arguments in constructor of LogicalAggregate, including traitSet and indicator.
/** * Creates a LogicalAggregate. * * <p>Use {@link #create} unless you know what you're doing. * * @param cluster Cluster that this relational expression belongs to * @param child 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, RelNode child, boolean indicator, ImmutableBitSet groupSet, List<ImmutableBitSet> groupSets, List<AggregateCall> aggCalls) { super(cluster, traitSet, child, indicator, groupSet, groupSets, aggCalls); }
Attachments
Issue Links
- links to