This is an automated email from the ASF dual-hosted git repository.

sereda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new ea5a036  [CALCITE-2895] Add missing arguments to constructor javadoc 
of LogicAggregate (Chunwei Lei)
ea5a036 is described below

commit ea5a0364eec6c0de9a52d51a40609692d6e4ad76
Author: chunwei.lcw <[email protected]>
AuthorDate: Wed Mar 6 16:48:45 2019 +0800

    [CALCITE-2895] Add missing arguments to constructor javadoc of 
LogicAggregate (Chunwei Lei)
---
 .../main/java/org/apache/calcite/rel/logical/LogicalAggregate.java | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git 
a/core/src/main/java/org/apache/calcite/rel/logical/LogicalAggregate.java 
b/core/src/main/java/org/apache/calcite/rel/logical/LogicalAggregate.java
index 720491d..eda72d2 100644
--- a/core/src/main/java/org/apache/calcite/rel/logical/LogicalAggregate.java
+++ b/core/src/main/java/org/apache/calcite/rel/logical/LogicalAggregate.java
@@ -48,8 +48,11 @@ public final class LogicalAggregate extends Aggregate {
    *
    * <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 cluster    Cluster that this relational expression belongs to
+   * @param traitSet   Traits
+   * @param child      input relational expression
+   * @param indicator  Whether row type should include indicator fields to
+   *                   indicate which grouping set is active
    * @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

Reply via email to