You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pv...@apache.org on 2021/03/23 06:02:02 UTC

[hive] branch master updated (cdd647b -> 23e4eed)

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

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


    from cdd647b  HIVE-24908: Adding Respect/Ignore nulls as a UDAF parameter is ambiguous (Krisztian Kasa, reviewed by Jesus Camacho Rodriguez)
     add 23e4eed  HIVE-24880: Add host and version information to compection queue (Peter Varga reviewed by Denys Kuzmenko)

No new revisions were added by this update.

Summary of changes:
 .../upgrade/hive/hive-schema-4.0.0.hive.sql        |  60 +++-
 .../upgrade/hive/upgrade-3.1.0-to-4.0.0.hive.sql   |  60 +++-
 .../show/compactions/ShowCompactionsDesc.java      |   4 +-
 .../show/compactions/ShowCompactionsOperation.java |  30 +-
 .../hive/ql/txn/compactor/CompactorThread.java     |  11 +
 .../hadoop/hive/ql/txn/compactor/Initiator.java    |  12 +-
 .../hadoop/hive/ql/txn/compactor/Worker.java       |  34 +--
 .../metastore/txn/TestCompactionTxnHandler.java    |  57 ++--
 .../hive/ql/txn/compactor/CompactorTest.java       |   6 +-
 .../hadoop/hive/ql/txn/compactor/TestCleaner.java  |   2 +-
 .../hive/ql/txn/compactor/TestInitiator.java       |  53 +++-
 .../hadoop/hive/ql/txn/compactor/TestWorker.java   |  36 +++
 .../queries/clientpositive/dbtxnmgr_showlocks.q    |   2 +
 ql/src/test/queries/clientpositive/sysdb.q         |   4 +-
 .../clientpositive/llap/dbtxnmgr_showlocks.q.out   |   4 +-
 .../test/results/clientpositive/llap/sysdb.q.out   |  26 +-
 .../src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp |  32 +-
 .../src/gen/thrift/gen-cpp/ThriftHiveMetastore.h   |  29 +-
 .../ThriftHiveMetastore_server.skeleton.cpp        |   2 +-
 .../gen/thrift/gen-cpp/hive_metastore_types.cpp    | 110 +++++++
 .../src/gen/thrift/gen-cpp/hive_metastore_types.h  |  48 ++-
 .../hive/metastore/api/CompactionRequest.java      | 220 +++++++++++++-
 .../metastore/api/ShowCompactResponseElement.java  | 326 ++++++++++++++++++++-
 .../hive/metastore/api/ThriftHiveMetastore.java    | 136 ++++++++-
 .../thrift/gen-php/metastore/CompactionRequest.php |  48 +++
 .../metastore/ShowCompactResponseElement.php       |  72 +++++
 .../metastore/ThriftHiveMetastoreClient.php        |   7 +-
 .../gen-php/metastore/ThriftHiveMetastoreIf.php    |   3 +-
 .../ThriftHiveMetastore_find_next_compact_args.php |  24 ++
 .../hive_metastore/ThriftHiveMetastore-remote      |   8 +-
 .../gen-py/hive_metastore/ThriftHiveMetastore.py   |  27 +-
 .../src/gen/thrift/gen-py/hive_metastore/ttypes.py |  64 +++-
 .../src/gen/thrift/gen-rb/hive_metastore_types.rb  |  14 +-
 .../src/gen/thrift/gen-rb/thrift_hive_metastore.rb |  14 +-
 .../hadoop/hive/metastore/HiveMetaStoreClient.java |  10 +-
 .../hadoop/hive/metastore/IMetaStoreClient.java    |  12 +
 .../src/main/thrift/hive_metastore.thrift          |   7 +-
 .../apache/hadoop/hive/metastore/HMSHandler.java   |   4 +-
 .../hadoop/hive/metastore/txn/CompactionInfo.java  |  13 +-
 .../hive/metastore/txn/CompactionTxnHandler.java   |  21 +-
 .../hadoop/hive/metastore/txn/TxnHandler.java      |  25 +-
 .../apache/hadoop/hive/metastore/txn/TxnStore.java |   3 +-
 .../src/main/sql/derby/hive-schema-4.0.0.derby.sql |  10 +-
 .../sql/derby/upgrade-3.2.0-to-4.0.0.derby.sql     |   8 +
 .../src/main/sql/mssql/hive-schema-4.0.0.mssql.sql |   8 +-
 .../sql/mssql/upgrade-3.2.0-to-4.0.0.mssql.sql     |   8 +
 .../src/main/sql/mysql/hive-schema-4.0.0.mysql.sql |  10 +-
 .../sql/mysql/upgrade-3.2.0-to-4.0.0.mysql.sql     |   8 +
 .../main/sql/oracle/hive-schema-4.0.0.oracle.sql   |  10 +-
 .../sql/oracle/upgrade-3.2.0-to-4.0.0.oracle.sql   |   8 +
 .../sql/postgres/hive-schema-4.0.0.postgres.sql    |  10 +-
 .../postgres/upgrade-3.2.0-to-4.0.0.postgres.sql   |   8 +
 .../metastore/HiveMetaStoreClientPreCatalog.java   |   8 +-
 .../upgrade-3.1.3000-to-4.0.0.postgres.sql         |   8 +
 54 files changed, 1586 insertions(+), 198 deletions(-)