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/01/25 17:59:27 UTC

[hive] branch master updated (cd37d36 -> 323146c)

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 cd37d36  HIVE-24500: Bump up the log4j version from 2.12.1 to 2.13.2 to avoid CVE-2020-9488 (#1754)(Sai Hemanth Gantasala, reviewed by Yongzhi Chen)
     add 323146c  HIVE-24633: Support CTE with column labels (Krisztian Kasa, reviewed by Jesus Camacho Rodriguez)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/hadoop/hive/ql/ErrorMsg.java   |   1 +
 .../org/apache/hadoop/hive/ql/parse/HiveParser.g   |   4 +-
 .../hadoop/hive/ql/parse/CalcitePlanner.java       |  18 ++-
 .../java/org/apache/hadoop/hive/ql/parse/QB.java   |   2 +-
 .../apache/hadoop/hive/ql/parse/QBParseInfo.java   |   9 ++
 .../hadoop/hive/ql/parse/SemanticAnalyzer.java     |  61 ++++----
 ql/src/test/queries/clientnegative/cte_col_alias.q |   5 +
 .../queries/clientnegative/cte_col_alias_clash.q   |   5 +
 ql/src/test/queries/clientpositive/cte_8.q         |  40 ++++++
 ql/src/test/queries/clientpositive/cte_mat_1.q     |   6 +-
 .../results/clientnegative/cte_col_alias.q.out     |   9 ++
 .../clientnegative/cte_col_alias_clash.q.out       |   9 ++
 .../test/results/clientpositive/llap/cte_8.q.out   | 159 +++++++++++++++++++++
 .../results/clientpositive/llap/cte_mat_1.q.out    |  12 +-
 14 files changed, 300 insertions(+), 40 deletions(-)
 create mode 100644 ql/src/test/queries/clientnegative/cte_col_alias.q
 create mode 100644 ql/src/test/queries/clientnegative/cte_col_alias_clash.q
 create mode 100644 ql/src/test/queries/clientpositive/cte_8.q
 create mode 100644 ql/src/test/results/clientnegative/cte_col_alias.q.out
 create mode 100644 ql/src/test/results/clientnegative/cte_col_alias_clash.q.out
 create mode 100644 ql/src/test/results/clientpositive/llap/cte_8.q.out