You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by aa...@apache.org on 2021/07/08 04:22:40 UTC

[hive] branch master updated (7eb731a -> b04db6b)

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

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


    from 7eb731a  HIVE-25278: HiveProjectJoinTransposeRule may do invalid transformations with windowing expressions (ADDENDUM)
     add b04db6b  HIVE-25086: Create Ranger Deny Policy for replication db in all cases. (#2240)(Haymant Mangla, reviewed by Aasha Medhi)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/hadoop/hive/conf/HiveConf.java |   6 +-
 .../java/org/apache/hadoop/hive/ql/ErrorMsg.java   |   4 +-
 .../TestReplicationScenariosAcrossInstances.java   |   2 +-
 ql/if/queryplan.thrift                             |   1 +
 ql/src/gen/thrift/gen-cpp/queryplan_types.cpp      |   4 +-
 ql/src/gen/thrift/gen-cpp/queryplan_types.h        |   5 +-
 .../apache/hadoop/hive/ql/plan/api/StageType.java  |   9 +-
 ql/src/gen/thrift/gen-php/StageType.php            |  11 +-
 ql/src/gen/thrift/gen-py/queryplan/ttypes.py       |  15 +-
 ql/src/gen/thrift/gen-rb/queryplan_types.rb        |   9 +-
 .../apache/hadoop/hive/ql/exec/TaskFactory.java    |   3 +
 .../hadoop/hive/ql/exec/repl/RangerDenyTask.java   | 161 +++++++++++++++++++++
 .../hadoop/hive/ql/exec/repl/RangerDenyWork.java   |  73 ++++++++++
 .../hadoop/hive/ql/exec/repl/RangerLoadTask.java   |   8 +-
 .../hadoop/hive/ql/exec/repl/ReplLoadTask.java     |  19 +++
 .../ql/exec/repl/ranger/NoOpRangerRestClient.java  |  11 +-
 .../hive/ql/exec/repl/ranger/RangerRestClient.java |   8 +-
 .../ql/exec/repl/ranger/RangerRestClientImpl.java  |  91 ++++++++----
 .../hadoop/hive/ql/exec/repl/util/ReplUtils.java   |   2 +-
 .../hive/ql/exec/repl/TestRangerLoadTask.java      |  91 ++++--------
 .../ql/exec/repl/ranger/TestRangerRestClient.java  |   2 +-
 21 files changed, 407 insertions(+), 128 deletions(-)
 create mode 100644 ql/src/java/org/apache/hadoop/hive/ql/exec/repl/RangerDenyTask.java
 create mode 100644 ql/src/java/org/apache/hadoop/hive/ql/exec/repl/RangerDenyWork.java