You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by dk...@apache.org on 2022/06/23 09:55:43 UTC

[hive] branch master updated (8f1a5b6854d -> f8e1545331c)

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

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


    from 8f1a5b6854d HIVE-26334: Remove misleading bucketing info from DESCRIBE FORMATTED output for Iceberg tables (Peter Vary reviewed by Laszlo Pinter) (#3378)
     add f8e1545331c HIVE-26244: Implement locking for the concurrent CTAS (Simhadri Govindappa, reviewed by Denys Kuzmenko)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/hadoop/hive/conf/HiveConf.java |   2 +
 .../apache/hadoop/hive/ql/hooks/WriteEntity.java   |   1 +
 .../org/apache/hadoop/hive/ql/io/AcidUtils.java    |  24 ++
 .../hadoop/hive/ql/lockmgr/DbTxnManager.java       |   2 +
 .../hadoop/hive/ql/parse/SemanticAnalyzer.java     |   8 +-
 .../hadoop/hive/ql/lockmgr/TestDbTxnManager2.java  |  81 +++--
 .../queries/clientpositive/acid_locking_ctas.q     |  64 ++++
 .../clientpositive/llap/acid_locking_ctas.q.out    | 344 +++++++++++++++++++++
 .../gen/thrift/gen-cpp/hive_metastore_types.cpp    |  22 ++
 .../src/gen/thrift/gen-cpp/hive_metastore_types.h  |  13 +-
 .../hadoop/hive/metastore/api/LockRequest.java     | 108 ++++++-
 .../gen/thrift/gen-php/metastore/LockRequest.php   |  24 ++
 .../src/gen/thrift/gen-py/hive_metastore/ttypes.py |  14 +-
 .../src/gen/thrift/gen-rb/hive_metastore_types.rb  |   4 +-
 .../hadoop/hive/metastore/LockRequestBuilder.java  |   5 +
 .../src/main/thrift/hive_metastore.thrift          |   3 +-
 .../hadoop/hive/metastore/txn/TxnHandler.java      |  55 ++--
 17 files changed, 711 insertions(+), 63 deletions(-)
 create mode 100644 ql/src/test/queries/clientpositive/acid_locking_ctas.q
 create mode 100644 ql/src/test/results/clientpositive/llap/acid_locking_ctas.q.out