You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by kr...@apache.org on 2020/10/07 17:18:15 UTC

[hive] branch master updated (4d68e56 -> e1867bf)

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

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


    from 4d68e56  HIVE-24229. DirectSql fails in case of OracleDB. (#1552)
     add e1867bf  HIVE-24199: Incorrect result when subquey in exists contains limit (Krisztian Kasa, reviewed by Vineet Garg)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/hadoop/hive/ql/ErrorMsg.java   |   1 +
 .../HiveRelOptMaterializationValidator.java        |   4 +-
 .../hive/ql/optimizer/calcite/HiveRelShuttle.java  |   2 +
 .../ql/optimizer/calcite/HiveRelShuttleImpl.java   |   6 +
 .../calcite/rules/HiveSubQueryRemoveRule.java      |  39 +-
 .../queries/clientnegative/offset_in_subquery.q    |   4 +
 .../queries/clientpositive/subquery_join_rewrite.q | 108 +++++
 .../clientnegative/offset_in_subquery.q.out        |   9 +
 .../llap/subquery_join_rewrite.q.out               | 494 +++++++++++++++++++++
 9 files changed, 664 insertions(+), 3 deletions(-)
 create mode 100644 ql/src/test/queries/clientnegative/offset_in_subquery.q
 create mode 100644 ql/src/test/queries/clientpositive/subquery_join_rewrite.q
 create mode 100644 ql/src/test/results/clientnegative/offset_in_subquery.q.out
 create mode 100644 ql/src/test/results/clientpositive/llap/subquery_join_rewrite.q.out