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 2015/10/13 02:13:15 UTC

[50/51] [abbrv] hive git commit: HIVE-12096 : LLAP: merge master into branch (Sergey Shelukhin) ADDENDUM merge

HIVE-12096 : LLAP: merge master into branch (Sergey Shelukhin) ADDENDUM merge


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

Branch: refs/heads/master
Commit: eb28deb61d927b43bd82d06aee2802b0571c6832
Parents: b6de889 9b4826e
Author: Sergey Shelukhin <se...@apache.org>
Authored: Mon Oct 12 16:53:35 2015 -0700
Committer: Sergey Shelukhin <se...@apache.org>
Committed: Mon Oct 12 16:53:35 2015 -0700

----------------------------------------------------------------------
 .../hive/ql/stats/DummyStatsAggregator.java     |  12 +-
 .../hive/ql/stats/DummyStatsPublisher.java      |  15 +-
 .../ql/stats/KeyVerifyingStatsAggregator.java   |  10 +-
 pom.xml                                         |   1 -
 .../hadoop/hive/ql/exec/FileSinkOperator.java   |   8 +-
 .../apache/hadoop/hive/ql/exec/StatsTask.java   |  31 ++-
 .../hadoop/hive/ql/exec/TableScanOperator.java  |   7 +-
 .../apache/hadoop/hive/ql/exec/Utilities.java   |  31 ++-
 .../hadoop/hive/ql/exec/mr/ExecDriver.java      |  14 +-
 .../hive/ql/exec/spark/SparkPlanGenerator.java  |  16 +-
 .../hadoop/hive/ql/exec/tez/DagUtils.java       |   5 +-
 .../hive/ql/index/AggregateIndexHandler.java    |   1 -
 .../hive/ql/index/TableBasedIndexHandler.java   |   7 -
 .../ql/index/bitmap/BitmapIndexHandler.java     |   1 -
 .../ql/index/compact/CompactIndexHandler.java   |   1 -
 .../ql/io/rcfile/stats/PartialScanMapper.java   |   7 +-
 .../ql/io/rcfile/stats/PartialScanTask.java     |  11 +-
 .../ql/io/rcfile/stats/PartialScanWork.java     |  14 ++
 .../hive/ql/optimizer/GenMRTableScan1.java      |   3 +
 .../hive/ql/optimizer/GenMapRedUtils.java       |   2 +-
 .../hive/ql/parse/ProcessAnalyzeTable.java      |   4 +-
 .../hadoop/hive/ql/parse/SemanticAnalyzer.java  |   8 +-
 .../parse/spark/SparkProcessAnalyzeTable.java   |   2 +
 .../hadoop/hive/ql/plan/FileSinkDesc.java       |  16 +-
 .../apache/hadoop/hive/ql/plan/StatsWork.java   |  15 +-
 .../hadoop/hive/ql/plan/TableScanDesc.java      |  12 +-
 .../hive/ql/stats/CounterStatsAggregator.java   |   8 +-
 .../ql/stats/CounterStatsAggregatorSpark.java   |   6 +-
 .../ql/stats/CounterStatsAggregatorTez.java     |  10 +-
 .../hive/ql/stats/CounterStatsPublisher.java    |   7 +-
 .../hadoop/hive/ql/stats/StatsAggregator.java   |   7 +-
 .../hive/ql/stats/StatsCollectionContext.java   |  63 ++++++
 .../hadoop/hive/ql/stats/StatsPublisher.java    |   8 +-
 .../hive/ql/stats/fs/FSStatsAggregator.java     |  23 +-
 .../hive/ql/stats/fs/FSStatsPublisher.java      |  32 +--
 .../hive/ql/stats/jdbc/JDBCStatsAggregator.java |  18 +-
 .../hive/ql/stats/jdbc/JDBCStatsPublisher.java  |  22 +-
 .../hive/ql/exec/TestFileSinkOperator.java      |  13 +-
 .../ql/exec/TestStatsPublisherEnhanced.java     |  61 +++---
 .../infer_bucket_sort_multi_insert.q            |   1 +
 .../test/queries/clientpositive/multi_insert.q  |   2 +-
 .../queries/clientpositive/multi_insert_gby2.q  |   2 +-
 .../queries/clientpositive/multi_insert_gby3.q  |   2 +-
 .../clientpositive/multi_insert_lateral_view.q  |   1 +
 .../queries/clientpositive/multi_insert_mixed.q |   2 +-
 ...multi_insert_move_tasks_share_dependencies.q |   2 +-
 .../clientpositive/multi_insert_union_src.q     |   2 +-
 .../spark/column_access_stats.q.out             |  46 ++--
 .../test/results/clientpositive/spark/pcr.q.out |  16 +-
 .../clientpositive/spark/ppd_join5.q.out        |  58 ++---
 .../clientpositive/spark/smb_mapjoin_12.q.out   |   6 +-
 .../clientpositive/spark/smb_mapjoin_13.q.out   |  36 ++--
 .../clientpositive/spark/smb_mapjoin_15.q.out   |  12 +-
 .../clientpositive/spark/smb_mapjoin_16.q.out   |   2 +-
 .../results/clientpositive/spark/union34.q.out  |  68 +++---
 service/pom.xml                                 |   6 -
 .../auth/TestLdapAtnProviderWithLdapServer.java | 215 -------------------
 .../org/apache/hive/service/auth/ldapdata.ldif  |  59 -----
 58 files changed, 486 insertions(+), 584 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/eb28deb6/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/hive/blob/eb28deb6/ql/src/java/org/apache/hadoop/hive/ql/exec/FileSinkOperator.java
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/hive/blob/eb28deb6/ql/src/java/org/apache/hadoop/hive/ql/exec/TableScanOperator.java
----------------------------------------------------------------------

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

http://git-wip-us.apache.org/repos/asf/hive/blob/eb28deb6/ql/src/java/org/apache/hadoop/hive/ql/exec/spark/SparkPlanGenerator.java
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/hive/blob/eb28deb6/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/hive/blob/eb28deb6/ql/src/java/org/apache/hadoop/hive/ql/optimizer/GenMapRedUtils.java
----------------------------------------------------------------------