[GitHub] [carbondata] Indhumathi27 opened a new pull request #3851: [WIP]Fix Global sort data load failure issue with Decimal value as NULL

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

[GitHub] [carbondata] Indhumathi27 opened a new pull request #3851: [WIP]Fix Global sort data load failure issue with Decimal value as NULL

GitBox

Indhumathi27 opened a new pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851


    ### Why is this PR needed?
   
   
    ### What changes were proposed in this PR?
   
       
    ### Does this PR introduce any user interface change?
    - No
    - Yes. (please explain the change and update document)
   
    ### Is any new testcase added?
    - No
    - Yes
   
       
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] akashrn5 commented on a change in pull request #3851: [WIP]Fix Global sort data load failure issue with Decimal value as NULL

GitBox

akashrn5 commented on a change in pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#discussion_r455977271



##########
File path: integration/spark/src/test/scala/org/apache/carbondata/integration/spark/testsuite/dataload/TestLoadDataGeneral.scala
##########
@@ -234,9 +234,25 @@ class TestLoadDataGeneral extends QueryTest with BeforeAndAfterEach {
       CarbonCommonConstants.BLOCKLET_SIZE_DEFAULT_VAL)
   }
 
+  test("test decimal value as null with global sort load") {

Review comment:
       @kunal642 had already fixed one issue regarding null value for string, now we got for decimal. He has added test case with string, int, double, int, bigint having null values in the test case, now decimal is added, please better to add a test case for all complex types also once.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] CarbonDataQA1 commented on pull request #3851: [WIP]Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

CarbonDataQA1 commented on pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#issuecomment-659591221


   Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/1667/
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] CarbonDataQA1 commented on pull request #3851: [WIP]Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

CarbonDataQA1 commented on pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#issuecomment-659592635


   Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/3409/
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] CarbonDataQA1 commented on pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

CarbonDataQA1 commented on pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#issuecomment-659929561


   Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/3410/
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] CarbonDataQA1 commented on pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

CarbonDataQA1 commented on pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#issuecomment-659930643


   Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/1668/
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] akashrn5 commented on a change in pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

akashrn5 commented on a change in pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#discussion_r456279789



##########
File path: integration/spark/src/test/scala/org/apache/carbondata/spark/testsuite/dataload/TestGlobalSortDataLoad.scala
##########
@@ -480,6 +482,19 @@ class TestGlobalSortDataLoad extends QueryTest with BeforeAndAfterEach with Befo
     checkAnswer(sql("select * from sink"), Row("k", null, null,null,null, null))
   }
 
+  test("test decimal and complex value as null with global sort load") {

Review comment:
       no need to create a new test case, @kunal642 already added a test case called `test global sort with null values`, please include these there only and just add Jira number in the comment of the test case.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] Indhumathi27 commented on a change in pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

Indhumathi27 commented on a change in pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#discussion_r456284123



##########
File path: integration/spark/src/test/scala/org/apache/carbondata/spark/testsuite/dataload/TestGlobalSortDataLoad.scala
##########
@@ -480,6 +482,19 @@ class TestGlobalSortDataLoad extends QueryTest with BeforeAndAfterEach with Befo
     checkAnswer(sql("select * from sink"), Row("k", null, null,null,null, null))
   }
 
+  test("test decimal and complex value as null with global sort load") {

Review comment:
       OK
   




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] CarbonDataQA1 commented on pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

CarbonDataQA1 commented on pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#issuecomment-660029721


   Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/1678/
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] CarbonDataQA1 commented on pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

CarbonDataQA1 commented on pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#issuecomment-660050232


   Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/3421/
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] akashrn5 commented on pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

akashrn5 commented on pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851#issuecomment-660078011


   LGTM


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]


Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] asfgit closed pull request #3851: [CARBONDATA-3909] Fix Global sort data load failure issue with Decimal value as NULL

GitBox
In reply to this post by GitBox

asfgit closed pull request #3851:
URL: https://github.com/apache/carbondata/pull/3851


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[hidden email]