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 2022/04/13 07:20:11 UTC

[hive] branch master updated: HIVE-26092: Fix javadoc errors for the 4.0.0 release (Peter Vary reviewed by Zoltan Haindrich) (#3185) (addendum)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 53784e0800 HIVE-26092: Fix javadoc errors for the 4.0.0 release (Peter Vary reviewed by Zoltan Haindrich) (#3185) (addendum)
53784e0800 is described below

commit 53784e08000ebc3364be5c0fb2d796305b7b6844
Author: Peter Vary <pv...@cloudera.com>
AuthorDate: Wed Apr 13 08:28:09 2022 +0200

    HIVE-26092: Fix javadoc errors for the 4.0.0 release (Peter Vary reviewed by Zoltan Haindrich) (#3185) (addendum)
---
 .../java/org/apache/hadoop/hive/ql/metadata/Hive.java  |  1 -
 .../hadoop/hive/ql/metadata/HiveStorageHandler.java    | 18 +++++++++---------
 2 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java
index 23c6d85d03..4ed822aa7b 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java
@@ -2252,7 +2252,6 @@ public class Hive {
    * specified sql query text. It is guaranteed that it will always return an up-to-date version wrt metastore.
    * This method filters out outdated Materialized views. It compares the transaction ids of the passed usedTables and
    * the materialized view using the txnMgr.
-   * @param querySql extended query text (has fully qualified identifiers)
    * @param tablesUsed List of tables to verify whether materialized view is outdated
    * @param txnMgr Transaction manager to get open transactions affects used tables.
    * @return List of materialized views has matching query definition with querySql
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveStorageHandler.java b/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveStorageHandler.java
index 4fcc288050..0784fe65ad 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveStorageHandler.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveStorageHandler.java
@@ -282,7 +282,7 @@ public interface HiveStorageHandler extends Configurable {
    *   <li>AcidSupportType.WITH_TRANSACTIONS - ACID operations are supported, and must use a valid HiveTxnManager to wrap
    *   the operation in a transaction, like in the case of standard Hive ACID tables</li>
    *   <li>AcidSupportType.WITHOUT_TRANSACTIONS - ACID operations are supported, and there is no need for a HiveTxnManager
-   *   to open/close transactions for the operation, i.e. {@link org.apache.hadoop.hive.ql.lockmgr.DummyTxnManager}
+   *   to open/close transactions for the operation, i.e. org.apache.hadoop.hive.ql.lockmgr.DummyTxnManager
    *   can be used</li>
    * </ul>
    *
@@ -307,12 +307,12 @@ public interface HiveStorageHandler extends Configurable {
 
   /**
    * {@link org.apache.hadoop.hive.ql.parse.UpdateDeleteSemanticAnalyzer} rewrites DELETE/UPDATE queries into INSERT
-   * queries. E.g. DELETE FROM T WHERE A = 32 is rewritten into INSERT INTO T SELECT <selectCols> FROM T WHERE A = 32
-   * SORT BY <sortCols>.
+   * queries. E.g. DELETE FROM T WHERE A = 32 is rewritten into
+   * INSERT INTO T SELECT &lt;selectCols&gt; FROM T WHERE A = 32 SORT BY &lt;sortCols&gt;.
    *
-   * This method specifies which columns should be injected into the <selectCols> part of the rewritten query.
+   * This method specifies which columns should be injected into the &lt;selectCols&gt; part of the rewritten query.
    *
-   * Should only return a non-empty list if {@link HiveStorageHandler#supportsAcidOperations()} ()} returns something
+   * Should only return a non-empty list if {@link HiveStorageHandler#supportsAcidOperations()} returns something
    * other NONE.
    *
    * @param table the table which is being deleted/updated/merged into
@@ -324,12 +324,12 @@ public interface HiveStorageHandler extends Configurable {
 
   /**
    * {@link org.apache.hadoop.hive.ql.parse.UpdateDeleteSemanticAnalyzer} rewrites DELETE/UPDATE queries into INSERT
-   * queries. E.g. DELETE FROM T WHERE A = 32 is rewritten into INSERT INTO T SELECT <selectCols> FROM T WHERE A = 32
-   * SORT BY <sortCols>.
+   * queries. E.g. DELETE FROM T WHERE A = 32 is rewritten into
+   * INSERT INTO T SELECT &lt;selectCols&gt; FROM T WHERE A = 32 SORT BY &lt;sortCols&gt;.
    *
-   * This method specifies which columns should be injected into the <sortCols> part of the rewritten query.
+   * This method specifies which columns should be injected into the &lt;sortCols&gt; part of the rewritten query.
    *
-   * Should only return a non-empty list if {@link HiveStorageHandler#supportsAcidOperations()} ()} returns something
+   * Should only return a non-empty list if {@link HiveStorageHandler#supportsAcidOperations()} returns something
    * other NONE.
    *
    * @param table the table which is being deleted/updated/merged into