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 2020/06/16 10:25:39 UTC

[hive] branch master updated (8208df9 -> c7f23df)

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

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


    from 8208df9  HIVE-21952 : Allow unsetting of serde properties (Miklos Gergely, reviewed by David Mollitor)
     add c7f23df  HIVE-23683: Add enqueue time to compaction (Peter Vary reviewed by Karen Coppage and Laszlo Pinter)

No new revisions were added by this update.

Summary of changes:
 .../upgrade/hive/hive-schema-4.0.0.hive.sql        |   9 ++
 .../upgrade/hive/upgrade-3.1.0-to-4.0.0.hive.sql   |   9 ++
 .../show/compactions/ShowCompactionsDesc.java      |   4 +-
 .../show/compactions/ShowCompactionsOperation.java |   4 +
 .../metastore/txn/TestCompactionTxnHandler.java    |  59 ++++++++++++
 .../queries/clientpositive/dbtxnmgr_showlocks.q    |   2 +
 ql/src/test/queries/clientpositive/sysdb.q         |   2 +
 .../clientpositive/llap/dbtxnmgr_showlocks.q.out   |   4 +-
 .../test/results/clientpositive/llap/sysdb.q.out   |  12 ++-
 .../hive/metastore/api/CompactionInfoStruct.java   | 107 ++++++++++++++++++++-
 .../metastore/api/ShowCompactResponseElement.java  | 107 ++++++++++++++++++++-
 .../src/gen/thrift/gen-php/metastore/Types.php     |  46 +++++++++
 .../src/gen/thrift/gen-py/hive_metastore/ttypes.py |  30 +++++-
 .../src/gen/thrift/gen-rb/hive_metastore_types.rb  |   8 +-
 .../src/main/thrift/hive_metastore.thrift          |   2 +
 .../hadoop/hive/metastore/txn/CompactionInfo.java  |   9 ++
 .../hive/metastore/txn/CompactionTxnHandler.java   |  15 +--
 .../hadoop/hive/metastore/txn/TxnHandler.java      |  16 ++-
 .../src/main/sql/derby/hive-schema-4.0.0.derby.sql |   2 +
 .../sql/derby/upgrade-3.2.0-to-4.0.0.derby.sql     |   4 +
 .../src/main/sql/mssql/hive-schema-4.0.0.mssql.sql |   2 +
 .../sql/mssql/upgrade-3.2.0-to-4.0.0.mssql.sql     |   4 +
 .../src/main/sql/mysql/hive-schema-4.0.0.mysql.sql |   2 +
 .../sql/mysql/upgrade-3.2.0-to-4.0.0.mysql.sql     |   4 +
 .../main/sql/oracle/hive-schema-4.0.0.oracle.sql   |   2 +
 .../sql/oracle/upgrade-3.2.0-to-4.0.0.oracle.sql   |   4 +
 .../sql/postgres/hive-schema-4.0.0.postgres.sql    |   2 +
 .../postgres/upgrade-3.2.0-to-4.0.0.postgres.sql   |   4 +
 28 files changed, 445 insertions(+), 30 deletions(-)