You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by da...@apache.org on 2019/03/06 19:08:25 UTC

[hive] 02/03: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/hive

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

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

commit 75edc069c4579ff34c8e174c0d10f02decae5dea
Merge: 1252886 0413fec
Author: Daniel Dai <da...@gmail.com>
AuthorDate: Wed Mar 6 11:04:03 2019 -0800

    Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/hive

 .../java/org/apache/hadoop/hive/cli/CliDriver.java |   3 +
 .../org/apache/hadoop/hive/conf/Constants.java     |   2 +
 .../hive/hcatalog/streaming/TestStreaming.java     |   2 +
 .../parse/TestReplicationWithTableMigrationEx.java |  67 ++++++++
 jdbc-handler/pom.xml                               |   6 +-
 .../hive/storage/jdbc/JdbcStorageHandler.java      |   4 +-
 .../jdbc/dao/GenericJdbcDatabaseAccessor.java      |   8 +-
 pom.xml                                            |   2 +
 .../org/apache/hadoop/hive/ql/exec/DDLTask.java    |   3 +
 .../apache/hadoop/hive/ql/exec/FetchOperator.java  |  37 ++++-
 .../org/apache/hadoop/hive/ql/exec/Utilities.java  |  97 +++++++-----
 .../bootstrap/events/filesystem/FSTableEvent.java  |   3 +
 .../hive/ql/io/HiveSequenceFileInputFormat.java    |  63 ++++++++
 .../calcite/HiveDefaultRelMetadataProvider.java    | 171 +++++++++++++++++----
 .../optimizer/calcite/rules/HiveSemiJoinRule.java  |  48 +++---
 .../hadoop/hive/ql/parse/CalcitePlanner.java       |  33 ++--
 .../apache/hadoop/hive/ql/parse/GenTezUtils.java   |   9 ++
 .../hive/ql/parse/ImportSemanticAnalyzer.java      |   3 +-
 .../hadoop/hive/ql/parse/SemanticAnalyzer.java     |   2 +-
 .../apache/hadoop/hive/ql/parse/TaskCompiler.java  |  37 ++++-
 .../hadoop/hive/ql/plan/CreateTableDesc.java       |  13 ++
 .../apache/hadoop/hive/ql/plan/CreateViewDesc.java |  13 ++
 .../org/apache/hadoop/hive/ql/plan/FetchWork.java  |  22 ++-
 .../apache/hadoop/hive/ql/plan/FileSinkDesc.java   |  38 ++++-
 .../hadoop/hive/ql/plan/ImportTableDesc.java       |  13 ++
 .../org/apache/hadoop/hive/ql/plan/PlanUtils.java  |   6 +-
 .../hadoop/hive/ql/stats/fs/FSStatsAggregator.java |  65 ++++++--
 .../hadoop/hive/ql/exec/TestFileSinkOperator.java  |   2 +-
 ql/src/test/queries/clientpositive/semijoin.q      |  13 ++
 .../results/clientpositive/llap/semijoin.q.out     |  51 +++++-
 .../clientpositive/perf/tez/cbo_query14.q.out      |   6 +-
 .../clientpositive/perf/tez/cbo_query83.q.out      |  12 +-
 .../perf/tez/constraints/cbo_query23.q.out         |   8 +-
 .../perf/tez/constraints/cbo_query83.q.out         |  12 +-
 .../results/clientpositive/spark/semijoin.q.out    |  51 +++++-
 .../apache/hive/service/server/HiveServer2.java    |   4 +
 36 files changed, 750 insertions(+), 179 deletions(-)