ShreelekhyaG commented on pull request #4208:
URL: https://github.com/apache/carbondata/pull/4208#issuecomment-903235354


   > how does the CI pass under spark3.1?
   > the partition table test case should work to take care of this issue, 
right?
   
   Prior to this, there is no such test case in CI with syntax like below, 
where we can create a partition table by giving partition column names from 
schema.
   `create table partitionTable(c1 int, c2 int, v1 string, v2 string) stored as 
carbondata partitioned by (v2,c2)`
   
   With 2.3 and 2.4 versions, the above syntax will fail while parsing and only 
the syntax with partition column names and datatype is valid like below. 
   `create table partitionTable(c1 int, v1 string) stored as carbondata 
partitioned by (v2 string,c2 int)`
   
   spark 3.1 supports creation of partition table with both of the above syntax 
types.
   


-- 
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.

To unsubscribe, e-mail: [email protected]

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


Reply via email to