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 2020/12/04 09:00:17 UTC

[hive] branch master updated (e1d1b2e -> ee8663e)

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 e1d1b2e  HIVE-21588: Remove HBase dependency from hive-metastore (#1723)
     add ee8663e  HIVE-24403: change min_history_level to make it compatible with older versions (Peter Varga, reviewed by Denys Kuzmenko)

No new revisions were added by this update.

Summary of changes:
 .../hadoop/hive/ql/txn/compactor/Cleaner.java      |  10 +-
 .../TestCleanerWithoutMinHistoryLevel.java         |  47 +++++++
 .../hadoop/hive/metastore/conf/MetastoreConf.java  |   3 +
 .../hadoop/hive/metastore/DatabaseProduct.java     |  13 ++
 .../hive/metastore/txn/CompactionTxnHandler.java   |  49 +++++++
 .../hadoop/hive/metastore/txn/TxnDbUtil.java       |  76 +++++++----
 .../hadoop/hive/metastore/txn/TxnHandler.java      | 152 +++++++++++++++++++++
 .../apache/hadoop/hive/metastore/txn/TxnStore.java |  10 ++
 .../src/main/sql/derby/hive-schema-4.0.0.derby.sql |   8 ++
 .../sql/derby/upgrade-3.2.0-to-4.0.0.derby.sql     |   1 -
 .../src/main/sql/mssql/hive-schema-4.0.0.mssql.sql |  11 ++
 .../sql/mssql/upgrade-3.2.0-to-4.0.0.mssql.sql     |   1 -
 .../src/main/sql/mysql/hive-schema-4.0.0.mysql.sql |   8 ++
 .../sql/mysql/upgrade-3.2.0-to-4.0.0.mysql.sql     |   1 -
 .../main/sql/oracle/hive-schema-4.0.0.oracle.sql   |   8 ++
 .../sql/oracle/upgrade-3.2.0-to-4.0.0.oracle.sql   |   1 -
 .../sql/postgres/hive-schema-4.0.0.postgres.sql    |   8 ++
 .../postgres/upgrade-3.2.0-to-4.0.0.postgres.sql   |   1 -
 .../hive/streaming/AbstractRecordWriter.java       |   4 +-
 19 files changed, 379 insertions(+), 33 deletions(-)
 create mode 100644 ql/src/test/org/apache/hadoop/hive/ql/txn/compactor/TestCleanerWithoutMinHistoryLevel.java