[GitHub] carbondata pull request #2846: [WIP] Added direct fill

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

[GitHub] carbondata pull request #2846: [WIP] Added direct fill

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

    https://github.com/apache/carbondata/pull/2846#discussion_r228435867
 
    --- Diff: integration/spark-common/src/main/scala/org/apache/carbondata/spark/rdd/CarbonScanRDD.scala ---
    @@ -90,6 +90,8 @@ class CarbonScanRDD[T: ClassTag](
       }
       private var vectorReader = false
     
    +  private var directScan = false
    --- End diff --
   
    sometimes in the code, it is called `directFill` but sometimes it is called `directScan`


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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata pull request #2846: [WIP] Added direct fill

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

    https://github.com/apache/carbondata/pull/2846#discussion_r228693211
 
    --- Diff: integration/spark-common/src/main/scala/org/apache/carbondata/spark/rdd/CarbonScanRDD.scala ---
    @@ -90,6 +90,8 @@ class CarbonScanRDD[T: ClassTag](
       }
       private var vectorReader = false
     
    +  private var directScan = false
    --- End diff --
   
    ok will change to directFill


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

[GitHub] carbondata pull request #2846: [WIP] Added direct fill

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

    https://github.com/apache/carbondata/pull/2846#discussion_r228693219
 
    --- Diff: integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/detailquery/CastColumnTestCase.scala ---
    @@ -224,7 +224,7 @@ class CastColumnTestCase extends QueryTest with BeforeAndAfterAll {
     
       test("Dictionary INT In to implicit Int") {
         checkAnswer(
    -      sql("select empno,empname,workgroupcategory from DICTIONARY_CARBON_1 where workgroupcategory in ('1', '2')"),
    +      sql("select empno,empname,workgroupcategory from DICTIONARY_CARBON_1 where workgroupcategory in (1, 2)"),
    --- End diff --
   
    removed


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

[GitHub] carbondata pull request #2846: [WIP] Added direct fill

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

    https://github.com/apache/carbondata/pull/2846#discussion_r228693240
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/util/ByteUtil.java ---
    @@ -733,4 +733,12 @@ public static double toXorDouble(byte[] value, int offset, int length) {
       public static float toXorFloat(byte[] value, int offset, int length) {
         return Float.intBitsToFloat(toXorInt(value, offset, length));
       }
    +
    +  public static int[] toIntArray(byte[] data, int size) {
    --- End diff --
   
    updated method name


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

[GitHub] carbondata issue #2846: [WIP] Added direct fill

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

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



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

[GitHub] carbondata issue #2846: [CARBONDATA-3048] Added Lazy Loading For 2.2/2.1

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

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



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

[GitHub] carbondata issue #2846: [CARBONDATA-3048] Added Lazy Loading For 2.2/2.1

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

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



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

[GitHub] carbondata issue #2846: [CARBONDATA-3048] Added Lazy Loading For 2.2/2.1

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

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


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

[GitHub] carbondata pull request #2846: [CARBONDATA-3048] Added Lazy Loading For 2.2/...

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

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


---
12