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/07/29 09:27:28 UTC

[hive] branch master updated (11cbf17 -> 6fbd54c)

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 11cbf17  HIVE-23806: Avoid clearing column stat states in all partition in case schema is extended (#1215) (Zoltan Haindrich reviewed by Peter Vary)
     add 6fbd54c  HIVE-23817. Pushing TopN Key operator PKFK inner joins (Attila Magyar, reviewed by Jesus Camacho Rodriguez, Krisztian Kasa)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/hadoop/hive/ql/parse/HintParser.g   |    2 +
 .../apache/hadoop/hive/ql/parse/HiveLexerParent.g  |    1 +
 .../optimizer/calcite/translator/ASTConverter.java |   43 +
 .../topnkey/TopNKeyPushdownProcessor.java          |  122 +-
 .../apache/hadoop/hive/ql/parse/QBJoinTree.java    |   20 +
 .../hadoop/hive/ql/parse/SemanticAnalyzer.java     |   20 +-
 .../org/apache/hadoop/hive/ql/plan/JoinDesc.java   |   34 +
 .../apache/hadoop/hive/ql/plan/TopNKeyDesc.java    |   11 +
 .../queries/clientpositive/topnkey_inner_join.q    |   63 +
 .../queries/clientpositive/topnkey_inner_join2.q   |   56 +
 .../clientpositive/llap/topnkey_inner_join.q.out   | 1394 ++++++++++++++++++++
 .../clientpositive/llap/topnkey_inner_join2.q.out  |  388 ++++++
 .../perf/tez/constraints/mv_query44.q.out          |  118 +-
 .../perf/tez/constraints/query44.q.out             |  118 +-
 .../perf/tez/constraints/query65.q.out             |  168 +--
 .../perf/tez/constraints/query99.q.out             |  132 +-
 16 files changed, 2413 insertions(+), 277 deletions(-)
 create mode 100644 ql/src/test/queries/clientpositive/topnkey_inner_join.q
 create mode 100644 ql/src/test/queries/clientpositive/topnkey_inner_join2.q
 create mode 100644 ql/src/test/results/clientpositive/llap/topnkey_inner_join.q.out
 create mode 100644 ql/src/test/results/clientpositive/llap/topnkey_inner_join2.q.out