[GitHub] carbondata pull request #2736: [CARBONDATA-2947] Adaptive encoding support f...

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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/2736
 
    Build Failed with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/618/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

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


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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/446/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

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


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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/626/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Failed  with Spark 2.3.1, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/8696/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

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


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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/453/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/633/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.3.1, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/8704/



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

[GitHub] carbondata pull request #2736: [CARBONDATA-2947] Adaptive encoding support f...

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

    https://github.com/apache/carbondata/pull/2736#discussion_r219947411
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/scan/executor/util/QueryUtil.java ---
    @@ -781,4 +781,34 @@ public static void putDataToVector(CarbonColumnVector vector, byte[] value, int
           }
         }
       }
    +
    +  /**
    +   * Put the data to vector
    +   *
    +   * @param vector
    +   * @param value
    +   * @param vectorRow
    +   */
    +  public static void putDataToVector(CarbonColumnVector vector, Object value, int vectorRow) {
    +    DataType dt = vector.getType();
    +    if (value.equals(CarbonCommonConstants.MEMBER_DEFAULT_VAL_ARRAY) || value
    +        .equals(CarbonCommonConstants.EMPTY_BYTE_ARRAY)) {
    +      vector.putNull(vectorRow);
    +    } else {
    +      if (dt == DataTypes.STRING) {
    +        vector.putBytes(vectorRow, (byte[]) value);
    +      } else if (dt == DataTypes.BOOLEAN) {
    +        vector.putBoolean(vectorRow, (boolean) value);
    +      } else if (dt == DataTypes.SHORT) {
    +        vector.putShort(vectorRow, (short) value);
    +      } else if (dt == DataTypes.INT) {
    +        vector.putInt(vectorRow, (int) value);
    +      } else if (dt == DataTypes.LONG) {
    --- End diff --
   
    Please handle for byte also


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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/461/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.3.1, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/8711/



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

[GitHub] carbondata issue #2736: [CARBONDATA-2947] Adaptive encoding support for time...

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

    https://github.com/apache/carbondata/pull/2736
 
    Build Success with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/641/



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

[GitHub] carbondata pull request #2736: [CARBONDATA-2947] Adaptive encoding support f...

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

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


---
123