You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@calcite.apache.org by "Chunwei Lei (JIRA)" <ji...@apache.org> on 2019/03/06 09:24:00 UTC

[jira] [Created] (CALCITE-2895) Some arguments are undocumented in constructor of LogicalAggregate

Chunwei Lei created CALCITE-2895:
------------------------------------

             Summary: Some arguments are undocumented in constructor of LogicalAggregate
                 Key: CALCITE-2895
                 URL: https://issues.apache.org/jira/browse/CALCITE-2895
             Project: Calcite
          Issue Type: Bug
          Components: core
            Reporter: Chunwei Lei


There are some undocumented arguments in constructor of LogicalAggregate, including traitSet and indicator.

{code:java}
  /**
   * 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);
  }
{code}




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)