You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2016/09/08 01:52:49 UTC

[29/38] hive git commit: HIVE-14671 : merge master into hive-14535 (Sergey Shelukhin)

HIVE-14671 : merge master into hive-14535 (Sergey Shelukhin)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/38409da3
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/38409da3
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/38409da3

Branch: refs/heads/hive-14535
Commit: 38409da32bc99a551c577b7d21ba76fa9ebe80bf
Parents: 87dcab4 146a918
Author: Sergey Shelukhin <se...@apache.org>
Authored: Wed Sep 7 18:49:17 2016 -0700
Committer: Sergey Shelukhin <se...@apache.org>
Committed: Wed Sep 7 18:49:17 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/hive/beeline/BeeLine.java   |  15 +-
 .../java/org/apache/hive/beeline/Commands.java  |  38 +-
 bin/ext/hiveserver2.sh                          |   5 +
 bin/ext/metastore.sh                            |   6 +-
 .../org/apache/hadoop/hive/common/LogUtils.java |  22 +
 .../org/apache/hadoop/hive/conf/HiveConf.java   |  20 +-
 .../apache/hadoop/hive/conf/HiveConfUtil.java   |  39 +-
 .../java/org/apache/hive/http/HttpServer.java   |   1 +
 .../apache/hadoop/hive/common/TestLogUtils.java |  34 ++
 .../mapreduce/FileOutputCommitterContainer.java |  13 +-
 .../hive/hcatalog/pig/TestHCatStorer.java       |  21 +-
 .../hive/hcatalog/templeton/AppConfig.java      |  15 +-
 .../hcatalog/templeton/tool/TempletonUtils.java |   4 +-
 .../hive/beeline/TestBeeLineWithArgs.java       |   8 +
 .../apache/hive/jdbc/TestJdbcWithMiniLlap.java  |  17 +
 .../test/resources/testconfiguration.properties |   1 +
 .../resources/testconfiguration.properties.orig |   8 +-
 .../hadoop/hive/cli/control/CliConfigs.java     |   2 +-
 llap-client/pom.xml                             |  22 +
 .../hive/llap/registry/ServiceInstanceSet.java  |   7 +-
 .../registry/impl/LlapFixedRegistryImpl.java    |   5 +-
 .../impl/LlapZookeeperRegistryImpl.java         | 220 +++++---
 .../hive/llap/registry/impl/SlotZnode.java      | 334 ++++++++++++
 .../hive/llap/security/LlapTokenClient.java     |   4 +-
 .../hive/llap/registry/impl/TestSlotZnode.java  | 269 ++++++++++
 .../hadoop/hive/llap/LlapBaseInputFormat.java   |  10 +-
 .../hive/llap/cli/LlapStatusServiceDriver.java  |  21 +-
 .../tezplugins/LlapTaskSchedulerService.java    |  15 +-
 .../hive/metastore/RetryingMetaStoreClient.java |   2 +-
 .../org/apache/hadoop/hive/ql/ErrorMsg.java     |   1 +
 .../org/apache/hadoop/hive/ql/exec/DDLTask.java |   9 +-
 .../hadoop/hive/ql/exec/FunctionRegistry.java   |   2 +
 .../apache/hadoop/hive/ql/exec/Utilities.java   |  23 -
 .../hadoop/hive/ql/exec/mr/MapredLocalTask.java |   3 +-
 .../ql/exec/spark/HiveSparkClientFactory.java   |  11 +-
 .../hive/ql/exec/tez/ReduceRecordSource.java    |   4 +-
 .../apache/hadoop/hive/ql/exec/tez/Utils.java   |   4 +-
 .../ql/exec/vector/VectorDeserializeRow.java    | 179 ++++++-
 .../hive/ql/exec/vector/VectorMapOperator.java  |   9 +-
 .../mapjoin/VectorMapJoinCommonOperator.java    |   3 +-
 .../VectorMapJoinGenerateResultOperator.java    |   7 +-
 .../fast/VectorMapJoinFastLongHashTable.java    |   5 +-
 .../fast/VectorMapJoinFastStringCommon.java     |   4 +-
 .../VectorMapJoinOptimizedLongCommon.java       |   2 -
 .../hadoop/hive/ql/io/orc/OrcInputFormat.java   |  21 +-
 .../hadoop/hive/ql/metadata/CheckResult.java    |  28 +-
 .../hive/ql/metadata/HiveMetaStoreChecker.java  |  49 +-
 .../calcite/stats/HiveRelMdPredicates.java      |  24 +-
 .../calcite/translator/HiveOpConverter.java     |  18 +-
 .../hive/ql/parse/BaseSemanticAnalyzer.java     |  15 +-
 .../org/apache/hadoop/hive/ql/parse/HiveLexer.g |   1 +
 .../apache/hadoop/hive/ql/parse/HiveParser.g    |   3 +-
 .../hadoop/hive/ql/parse/IdentifiersParser.g    |   1 +
 .../org/apache/hadoop/hive/ql/udf/UDFRand.java  |   6 +-
 .../hive/ql/udf/generic/GenericUDFNullif.java   | 106 ++++
 .../udf/generic/GenericUDFSortArrayByField.java | 202 +++++++
 .../ql/udf/generic/GenericUDTFGetSplits.java    |  82 +--
 .../ql/TestTxnCommands2WithSplitUpdate.java     |  36 --
 .../hadoop/hive/ql/exec/TestUtilities.java      |  12 -
 .../TestHostAffinitySplitLocationProvider.java  |   4 +-
 .../hive/ql/exec/vector/TestVectorSerDeRow.java | 254 +++++++--
 .../ql/exec/vector/VectorRandomRowSource.java   | 159 ++++--
 .../mapjoin/fast/CheckFastRowHashMap.java       |   8 +-
 .../ql/metadata/TestHiveMetaStoreChecker.java   | 110 ++--
 .../ql/udf/generic/TestGenericUDFNullif.java    | 132 +++++
 .../generic/TestGenericUDFSortArrayByField.java | 228 ++++++++
 .../clientnegative/udf_sort_array_by_wrong1.q   |   2 +
 .../clientnegative/udf_sort_array_by_wrong2.q   |   2 +
 .../clientnegative/udf_sort_array_by_wrong3.q   |  16 +
 .../queries/clientpositive/double_precision.q   |   2 +
 .../clientpositive/msck_repair_batchsize.q      |   5 +-
 ql/src/test/queries/clientpositive/udf_nullif.q |  18 +
 .../queries/clientpositive/udf_sort_array_by.q  | 136 +++++
 ql/src/test/queries/clientpositive/union37.q    | 125 +++++
 ql/src/test/queries/clientpositive/union_null.q |   3 +
 .../beelinepositive/show_functions.q.out        |   1 +
 .../udf_sort_array_by_wrong1.q.out              |   1 +
 .../udf_sort_array_by_wrong2.q.out              |   1 +
 .../udf_sort_array_by_wrong3.q.out              |  37 ++
 .../clientpositive/correlationoptimizer8.q.out  |   6 +-
 .../clientpositive/double_precision.q.out       |  16 +
 ql/src/test/results/clientpositive/join34.q.out |   2 +-
 ql/src/test/results/clientpositive/join35.q.out |   2 +-
 .../clientpositive/msck_repair_batchsize.q.out  |   5 +-
 .../results/clientpositive/show_functions.q.out |   2 +
 .../results/clientpositive/spark/join34.q.out   |   2 +-
 .../results/clientpositive/spark/join35.q.out   |   2 +-
 .../clientpositive/spark/union_null.q.out       |  18 +
 .../results/clientpositive/udf_nullif.q.out     | 168 ++++++
 .../clientpositive/udf_sort_array_by.q.out      | 401 ++++++++++++++
 .../test/results/clientpositive/union37.q.out   | 522 +++++++++++++++++++
 .../results/clientpositive/union_null.q.out     |  18 +
 .../fast/BinarySortableDeserializeRead.java     | 109 +++-
 .../hive/serde2/fast/DeserializeRead.java       |  38 +-
 .../lazy/fast/LazySimpleDeserializeRead.java    |  94 +++-
 .../fast/LazyBinaryDeserializeRead.java         |   5 +-
 .../binarysortable/TestBinarySortableFast.java  |  15 +-
 .../hive/serde2/lazy/TestLazySimpleFast.java    |   8 +-
 .../serde2/lazybinary/TestLazyBinaryFast.java   |   8 +-
 .../org/apache/hive/service/cli/CLIService.java |  11 +-
 .../apache/hive/service/cli/CLIServiceTest.java |  10 +-
 .../hive/ql/exec/vector/BytesColumnVector.java  |  31 ++
 testutils/ptest2/pom.xml                        |  28 +-
 .../hive/ptest/execution/conf/TestParser.java   |   3 +
 ...tScripts.testAlternativeTestJVM.approved.txt |   8 +-
 .../TestScripts.testBatch.approved.txt          |   8 +-
 106 files changed, 4221 insertions(+), 611 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/38409da3/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java
----------------------------------------------------------------------