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 2021/04/28 15:55:55 UTC

[hive] branch master updated (87cca76 -> ac38d87)

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

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


    from 87cca76  HIVE-24992: Incremental rebuild of MV having aggregate in presence of delete operation (Krisztian Kasa, reviewed by Jesus Camacho Rodriguez)
     add ac38d87  HIVE-24998: IS [NOT] DISTINCT FROM failing with SemanticException (Soumyakanti Das, reviewed by Jesus Camacho Rodriguez)

No new revisions were added by this update.

Summary of changes:
 .../hadoop/hive/ql/exec/FunctionRegistry.java      |    1 +
 .../ql/optimizer/calcite/HiveRexExecutorImpl.java  |    2 +-
 .../optimizer/calcite/translator/ASTConverter.java |    8 +
 .../calcite/translator/ExprNodeConverter.java      |   14 +
 .../calcite/translator/SqlFunctionConverter.java   |    9 +-
 .../cbo_fallback_never_semantic_exception.q        |    5 -
 ql/src/test/queries/clientpositive/explainuser_1.q |   20 +
 .../test/queries/clientpositive/is_distinct_from.q |   14 +
 .../clientpositive/join_is_not_distinct_from.q     |    7 +-
 ql/src/test/queries/clientpositive/join_nullsafe.q |    7 +-
 ql/src/test/queries/clientpositive/semijoin6.q     |    3 +
 .../queries/clientpositive/tez_union_group_by.q    |   29 +-
 .../cbo_fallback_never_semantic_exception.q.out    |    1 -
 .../cbo_fallback_always_semantic_exception.q.out   |    8 +-
 ..._fallback_conservative_semantic_exception.q.out |    8 +-
 .../cbo_fallback_test_semantic_exception.q.out     |    8 +-
 .../clientpositive/llap/compare_cols_null.q.out    |    6 +
 .../clientpositive/llap/explainuser_1.q.out        |  668 ++++++---
 .../clientpositive/llap/is_distinct_from.q.out     |   82 +-
 .../llap/join_by_range_rule_not_null.q.out         |   46 +-
 .../llap/join_is_not_distinct_from.q.out           |  482 ++++---
 .../clientpositive/llap/join_nullsafe.q.out        |  482 ++++---
 .../llap/orc_predicate_pushdown.q.out              |   10 +-
 .../llap/parquet_predicate_pushdown.q.out          |   10 +-
 .../results/clientpositive/llap/semijoin6.q.out    |   37 +-
 .../clientpositive/llap/show_functions.q.out       |    2 +
 .../clientpositive/llap/tez_union_group_by.q.out   |  308 +++--
 .../results/clientpositive/llap/udf_equal.q.out    |    1 +
 .../clientpositive/llap/vector_nullsafe_join.q.out | 1412 +++++++++++---------
 29 files changed, 2356 insertions(+), 1334 deletions(-)
 delete mode 100644 ql/src/test/queries/clientnegative/cbo_fallback_never_semantic_exception.q
 delete mode 100644 ql/src/test/results/clientnegative/cbo_fallback_never_semantic_exception.q.out