[GitHub] carbondata pull request #2304: Fixed No dictionary Complex type with double/...

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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/2304
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/5900/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/4746/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/4748/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/5902/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/5903/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/4749/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

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



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/5904/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Success with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/4750/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

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



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

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



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

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



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

[GitHub] carbondata pull request #2304: [CARBONDATA-2477]Fixed No dictionary Complex ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2304#discussion_r188885269
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/page/VarLengthColumnPageBase.java ---
    @@ -202,9 +249,36 @@ private static ColumnPage getLVBytesColumnPage(TableSpec.ColumnSpec columnSpec,
         lvEncodedOffset = 0;
         for (int i = 0; i < numRows; i++) {
           length = rowLength.get(i);
    -      page.putBytes(i, lvEncodedBytes, lvEncodedOffset + 4, length);
    -      lvEncodedOffset += 4 + length;
    +      page.putBytes(i, lvEncodedBytes, lvEncodedOffset + lvLength, length);
    +      lvEncodedOffset += lvLength + length;
         }
    +    return page;
    +  }
    +
    +  private static ColumnPage getComplexParentBytesColumnPage(TableSpec.ColumnSpec columnSpec,
    --- End diff --
   
    Check and remove if not required


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

[GitHub] carbondata pull request #2304: [CARBONDATA-2477]Fixed No dictionary Complex ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2304#discussion_r188885431
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/page/VarLengthColumnPageBase.java ---
    @@ -353,6 +427,32 @@ public double getDouble(int rowId) {
         return data;
       }
     
    +  @Override public byte[] getComplexChildrenLVFlattenedBytePage() throws IOException {
    +    // output LV encoded byte array
    +    int offset = 0;
    +    byte[] data = new byte[totalLength + pageSize * 2];
    +    for (int rowId = 0; rowId < pageSize; rowId++) {
    +      short length = (short) (rowOffset[rowId + 1] - rowOffset[rowId]);
    +      ByteUtil.setShort(data, offset, length);
    +      copyBytes(rowId, data, offset + 2, length);
    +      offset += 2 + length;
    +    }
    +    return data;
    +  }
    +
    +  @Override
    +  public byte[] getComplexParentFlattenedBytePage() throws IOException {
    --- End diff --
   
    Check and remove if not required


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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Success with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/4781/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

    https://github.com/apache/carbondata/pull/2304
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/5936/



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

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



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

[GitHub] carbondata issue #2304: [CARBONDATA-2477]Fixed No dictionary Complex type wi...

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

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


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

[GitHub] carbondata pull request #2304: [CARBONDATA-2477]Fixed No dictionary Complex ...

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

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


---
12