You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ra...@apache.org on 2019/08/12 14:14:22 UTC

[carbondata] branch branch-1.6 updated (9724fd4 -> 61a5bd3)

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

ravipesala pushed a change to branch branch-1.6
in repository https://gitbox.apache.org/repos/asf/carbondata.git.


 discard 9724fd4  [maven-release-plugin] prepare for next development iteration
    omit 9ca7891  [maven-release-plugin] prepare release apache-CarbonData-1.6.0-rc2
    omit 80438f7  [HOTFIX] Removed the hive-exec and commons dependency from hive module
    omit 575b711  [CARBONDATA-3481] Multi-thread pruning fails when datamaps count is just near numOfThreadsForPruning
    omit 2ebc041  [CARBONDATA-3478]Fix ArrayIndexOutOfBound Exception on compaction after alter operation
    omit 917e041  [HOTFIX] CLI test case failed during release because of space differences
     add c8cc92b  [CARBONDATA-3478]Fix ArrayIndexOutOfBound Exception on compaction after alter operation
     add 10f3747  [HOTFIX] CLI test case failed during release because of space differences
     add 765712a  [CARBONDATA-3481] Multi-thread pruning fails when datamaps count is just near numOfThreadsForPruning
     add d7d70a8  [HOTFIX] Removed the hive-exec and commons dependency from hive module
     add f005fd4  [CARBONDATA-3477] deal line break chars correctly after 'select' in 'update ... select columns' sql
     add 35f1501  [CARBONDATA-3483] don't require update.lock and compaction.lock again when execute 'IUD_UPDDEL_DELTA' compaction
     add e14c817  [CARBONDATA-3485] Data loading is failed from S3 to hdfs table having ~2K carbonfiles
     add 88ec830  [CARBONDATA-3476] Fix Read time and scan time stats in executor log for filter query
     add ebe4057  [CARBONDATA-3452] Fix select query failure when substring on dictionary column with join
     add bbeb974  [CARBONDATA-3487] wrong Input metrics (size/record) displayed in spark UI during insert into
     add aa67a99  [CARBONDATA-3486] Fix Serialization/Deserialization issue with DataType
     add 8f0724e  [CARBONDATA-3482] Fixed NPE in Concurrent query
     add 61a5bd3  [HOTFIX] Fix dictionary include issue with codegen failure

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9724fd4)
            \
             N -- N -- N   refs/heads/branch-1.6 (61a5bd3)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 assembly/pom.xml                                   |  2 +-
 common/pom.xml                                     |  2 +-
 core/pom.xml                                       |  2 +-
 .../core/constants/CarbonCommonConstants.java      | 10 ++++
 .../block/SegmentPropertiesAndSchemaHolder.java    | 21 ++++---
 .../core/indexstore/BlockletDataMapIndexStore.java |  2 +-
 .../indexstore/blockletindex/BlockDataMap.java     | 36 ++++--------
 .../indexstore/blockletindex/BlockletDataMap.java  |  7 +--
 .../carbondata/core/scan/filter/FilterUtil.java    |  5 +-
 .../MeasureColumnResolvedFilterInfo.java           |  3 +-
 .../AbstractDetailQueryResultIterator.java         | 10 ++--
 .../scan/scanner/impl/BlockletFilterScanner.java   | 34 ++++++++----
 .../carbondata/core/util/CarbonProperties.java     | 24 ++++++++
 .../carbondata/core/util/TaskMetricsMap.java       | 21 ++++++-
 datamap/bloom/pom.xml                              |  6 +-
 datamap/examples/pom.xml                           |  6 +-
 datamap/lucene/pom.xml                             |  6 +-
 datamap/mv/core/pom.xml                            |  2 +-
 datamap/mv/plan/pom.xml                            |  2 +-
 examples/flink/pom.xml                             |  2 +-
 examples/spark2/pom.xml                            |  2 +-
 format/pom.xml                                     |  2 +-
 hadoop/pom.xml                                     |  2 +-
 integration/hive/pom.xml                           |  2 +-
 integration/presto/pom.xml                         |  2 +-
 integration/spark-common-test/pom.xml              | 14 ++---
 ...ryWithColumnMetCacheAndCacheLevelProperty.scala | 27 +--------
 .../iud/HorizontalCompactionTestCase.scala         | 64 +++++++++++++++++++++-
 .../testsuite/iud/UpdateCarbonTableTestCase.scala  | 42 +++++++++++++-
 integration/spark-common/pom.xml                   |  2 +-
 .../apache/carbondata/spark/InitInputMetrics.java  |  2 +-
 .../spark/load/DataLoadProcessBuilderOnSpark.scala |  2 +-
 .../apache/carbondata/spark/rdd/CarbonRDD.scala    |  4 +-
 .../carbondata/spark/rdd/CarbonScanRDD.scala       |  2 +-
 .../org/apache/spark/CarbonInputMetrics.scala      | 30 +++++++---
 integration/spark-datasource/pom.xml               |  2 +-
 integration/spark2/pom.xml                         |  2 +-
 .../datamap/IndexDataMapRebuildRDD.scala           |  2 +-
 .../spark/rdd/CarbonDataRDDFactory.scala           |  4 +-
 .../CarbonAlterTableCompactionCommand.scala        | 47 +++++++++-------
 .../spark/sql/optimizer/CarbonLateDecodeRule.scala | 21 ++++++-
 .../spark/sql/parser/CarbonSpark2SqlParser.scala   |  3 +-
 .../carbondata/query/SubQueryJoinTestSuite.scala   | 59 ++++++++++++++++++++
 pom.xml                                            |  2 +-
 processing/pom.xml                                 |  2 +-
 store/sdk/pom.xml                                  |  6 +-
 streaming/pom.xml                                  |  6 +-
 tools/cli/pom.xml                                  |  6 +-
 48 files changed, 401 insertions(+), 163 deletions(-)
 create mode 100644 integration/spark2/src/test/scala/org/apache/spark/carbondata/query/SubQueryJoinTestSuite.scala