You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2020/08/26 16:04:56 UTC

[hive] branch master updated: HIVE-24041: Extend semijoin conversion rules (Jesus Camacho Rodriguez, reviewed by Krisztian Kasa) (addendum)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1635a9d  HIVE-24041: Extend semijoin conversion rules (Jesus Camacho Rodriguez, reviewed by Krisztian Kasa) (addendum)
1635a9d is described below

commit 1635a9d2ea68c7ee08c38e111d8a4867b2e2c5f3
Author: Jesus Camacho Rodriguez <jc...@apache.org>
AuthorDate: Wed Aug 26 09:04:46 2020 -0700

    HIVE-24041: Extend semijoin conversion rules (Jesus Camacho Rodriguez, reviewed by Krisztian Kasa) (addendum)
---
 .../org/apache/hadoop/hive/ql/optimizer/calcite/HiveCalciteUtil.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/calcite/HiveCalciteUtil.java b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/calcite/HiveCalciteUtil.java
index b34d34c..f4ba816 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/calcite/HiveCalciteUtil.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/calcite/HiveCalciteUtil.java
@@ -1259,7 +1259,7 @@ public class HiveCalciteUtil {
   }
 
   /**
-   *
+   * Extracts inputs referenced by aggregate operator.
    */
   public static ImmutableBitSet extractRefs(Aggregate aggregate) {
     final ImmutableBitSet.Builder refs = ImmutableBitSet.builder();