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

2022-04-13 Thread pvary
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 
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 {
*   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
*   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
* 
*
@@ -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  FROM T WHERE A = 32
-   * SORT BY .
+   * queries. E.g. DELETE FROM T WHERE A = 32 is rewritten into
+   * INSERT INTO T SELECT  FROM T WHERE A = 32 SORT BY 
.
*
-   * This method specifies which columns should be injected into the 
 part of the rewritten query.
+   * This method specifies which columns should be injected into the 
 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  FROM T WHERE A = 32
-   * SORT BY .
+   * queries. E.g. DELETE FROM T WHERE A = 32 is rewritten into
+   * INSERT INTO T SELECT  FROM T WHERE A = 32 SORT BY 
.
*
-   * This method specifies which columns should be injected into the 
 part of the rewritten query.
+   * This method specifies which columns should be injected into the 
 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



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

2022-04-12 Thread pvary
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 431e7d9e54 HIVE-26092: Fix javadoc errors for the 4.0.0 release (Peter 
Vary reviewed by Zoltan Haindrich) (#3185)
431e7d9e54 is described below

commit 431e7d9e5431a808106d8db81e11aea74f040da5
Author: pvary 
AuthorDate: Tue Apr 12 13:52:52 2022 +0200

HIVE-26092: Fix javadoc errors for the 4.0.0 release (Peter Vary reviewed 
by Zoltan Haindrich) (#3185)
---
 Jenkinsfile| 12 
 .../format/datetime/HiveSqlDateTimeFormatter.java  | 32 +++---
 .../org/apache/hadoop/hive/common/type/Date.java   |  6 ++--
 .../apache/hadoop/hive/common/type/Timestamp.java  |  6 ++--
 .../apache/hive/common/util/TimestampParser.java   |  2 +-
 .../hive/benchmark/calcite/FieldTrimmerBench.java  |  6 ++--
 .../apache/hive/benchmark/hash/Murmur3Bench.java   | 10 +++
 .../hive/benchmark/serde/LazySimpleSerDeBench.java |  6 ++--
 .../vectorization/VectorizedArithmeticBench.java   | 10 +++
 .../vectorization/VectorizedComparisonBench.java   | 10 +++
 .../vectorization/VectorizedLikeBench.java | 10 +++
 .../vectorization/VectorizedLogicBench.java| 10 +++
 .../hive/ql/qoption/QTestOptionDispatcher.java |  2 +-
 .../org/apache/hive/jdbc/HiveBaseResultSet.java|  4 +--
 .../apache/hive/jdbc/saml/IJdbcBrowserClient.java  |  2 +-
 .../org/apache/hadoop/hive/llap/io/api/LlapIo.java |  2 +-
 .../security/DefaultJwtSharedSecretProvider.java   |  2 +-
 .../tezplugins/metrics/LlapMetricsListener.java|  2 +-
 .../org/apache/hadoop/hive/llap/LlapHiveUtils.java |  3 +-
 .../ql/ddl/table/info/desc/DescTableAnalyzer.java  |  6 ++--
 .../hadoop/hive/ql/exec/AddToClassPathAction.java  |  4 +--
 .../java/org/apache/hadoop/hive/ql/exec/Task.java  |  2 +-
 .../org/apache/hadoop/hive/ql/exec/Utilities.java  |  3 +-
 .../hive/ql/exec/WindowFunctionDescription.java| 26 +-
 .../hive/ql/exec/repl/OptimisedBootstrapUtils.java |  4 +--
 .../hadoop/hive/ql/exec/repl/ReplStatsTracker.java |  2 +-
 .../apache/hadoop/hive/ql/exec/tez/DagUtils.java   |  1 -
 .../expressions/CastDateToCharWithFormat.java  |  2 +-
 .../expressions/CastDateToStringWithFormat.java|  2 +-
 .../expressions/CastDateToVarCharWithFormat.java   |  2 +-
 .../expressions/CastStringToDateWithFormat.java|  2 +-
 .../CastStringToTimestampWithFormat.java   |  2 +-
 .../expressions/CastTimestampToCharWithFormat.java |  2 +-
 .../CastTimestampToStringWithFormat.java   |  2 +-
 .../CastTimestampToVarCharWithFormat.java  |  2 +-
 .../apache/hadoop/hive/ql/io/AcidInputFormat.java  |  2 +-
 .../hadoop/hive/ql/io/orc/encoded/StreamUtils.java |  1 -
 .../hive/ql/log/syslog/SyslogInputFormat.java  |  2 +-
 .../hadoop/hive/ql/log/syslog/SyslogParser.java| 11 
 .../org/apache/hadoop/hive/ql/metadata/Hive.java   |  2 +-
 .../hive/ql/metadata/HiveStorageHandler.java   |  2 +-
 .../hive/ql/optimizer/ParallelEdgeFixer.java   |  2 +-
 .../hive/ql/optimizer/SemiJoinReductionMerge.java  |  6 ++--
 .../calcite/functions/HiveMergeableAggregate.java  |  2 +-
 .../calcite/rules/HiveAggregateSortLimitRule.java  |  2 +-
 .../ql/optimizer/calcite/rules/HiveDruidRules.java |  2 +-
 .../calcite/rules/HiveHepExtractRelNodeRule.java   |  3 +-
 .../HiveProjectSortExchangeTransposeRule.java  |  2 +-
 .../rules/HiveRewriteToDataSketchesRules.java  |  6 ++--
 ...regateInsertDeleteIncrementalRewritingRule.java | 14 +-
 ...iveAggregateInsertIncrementalRewritingRule.java |  6 ++--
 ...AggregatePartitionIncrementalRewritingRule.java |  4 +--
 ...veJoinInsertDeleteIncrementalRewritingRule.java |  4 +--
 .../calcite/translator/RexNodeConverter.java   |  4 +--
 .../hive/ql/optimizer/topnkey/CommonKeyPrefix.java |  6 ++--
 .../ql/optimizer/topnkey/TopNKeyProcessor.java |  2 +-
 .../hadoop/hive/ql/parse/CalcitePlanner.java   |  1 -
 .../hadoop/hive/ql/parse/UnparseTranslator.java|  4 +--
 .../hadoop/hive/ql/parse/type/FunctionHelper.java  |  2 +-
 .../hive/ql/txn/compactor/CompactorThread.java |  2 +-
 .../hive/ql/udf/generic/GenericUDAFRank.java   |  2 +-
 .../hive/ql/udf/generic/GenericUDFCastFormat.java  |  2 +-
 .../org/apache/hadoop/hive/serde2/JsonSerDe.java   |  4 +--
 .../hadoop/hive/serde2/json/BinaryEncoding.java|  2 +-
 .../hadoop/hive/serde2/json/HiveJsonReader.java|  6 ++--
 .../hive/service/cli/operation/QueryInfoCache.java |  2 +-
 .../org/apache/hadoop/hive/shims/HadoopShims.java  |  2 --
 .../hadoop/hive/metastore/HiveMetaStoreClient.java |  2 +-
 .../hadoop/hive/metastore/IMetaStoreClient.java| 11 ++--
 .../hadoop/hive/metastore/utils/FileUtils.java |  1 -
 .../hadoop/hive/metastore/ExceptionHandler.java|  4 +--
 .../metastore