[GitHub] carbondata pull request #1299: [CARBONDATA-1426] Resolved Split Partition Bu...

classic Classic list List threaded Threaded
11 messages Options
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1299: [CARBONDATA-1426] Resolved Split Partition Bu...

qiuchenjian-2
GitHub user nehabhardwaj01 opened a pull request:

    https://github.com/apache/carbondata/pull/1299

    [CARBONDATA-1426] Resolved Split Partition Bug When NewList sequence is different from OldList

    Split Partition Raises Exception when the sequence of NewList Elements differ from OldList Elements.
    The PR is for this bug.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/nehabhardwaj01/incubator-carbondata resolve/CARBONDATA-1426

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/carbondata/pull/1299.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #1299
   
----
commit 9af01abebe1e9b2d59dc1e9e0fb51e1ee60f2f03
Author: nehabhardwaj01 <[hidden email]>
Date:   2017-08-30T09:59:36Z

    Resolved Split Partition Bug When NewList sequence is different from OldList

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1299: [CARBONDATA-1426] Resolved Split Partition Bu...

qiuchenjian-2
Github user xuchuanyin commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1299#discussion_r136105752
 
    --- Diff: integration/spark-common/src/main/scala/org/apache/carbondata/spark/util/CommonUtil.scala ---
    @@ -351,7 +351,7 @@ object CommonUtil {
         if (tempList.length != originListInfo.size) {
           sys.error("The total number of elements in new list must equal to original list!")
         }
    -    if (!originListInfo.sameElements(tempList)) {
    +    if (originListInfo.toSet!=tempList.toSet) {
    --- End diff --
   
    According to the error message below, it requires `originListInfo` contains `tempList`, so the condition should be like `!(tempList diff originListInfo).isEmpty`


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    SDV Build Success with Spark 2.1, Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/362/



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [hidden email] or file a JIRA ticket
with INFRA.
---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    SDV Build Fail , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/510/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user sraghunandan commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    LGTM


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chenliang613 commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    retest this please


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    SDV Build Fail , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/536/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user nehabhardwaj01 commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    retest this please


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    SDV Build Success , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/555/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1299: [CARBONDATA-1426] Resolved Split Partition Bug When ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user jackylk commented on the issue:

    https://github.com/apache/carbondata/pull/1299
 
    LGTM


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1299: [CARBONDATA-1426] Resolved Split Partition Bu...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user asfgit closed the pull request at:

    https://github.com/apache/carbondata/pull/1299


---