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

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

     [ https://issues.apache.org/jira/browse/CALCITE-2895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chunwei Lei reassigned CALCITE-2895:
------------------------------------

    Assignee: Chunwei Lei

> 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
>            Assignee: Chunwei Lei
>            Priority: Minor
>              Labels: pull-request-available
>             Fix For: 1.19.0
>
>          Time Spent: 50m
>  Remaining Estimate: 0h
>
> 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)