[GitHub] carbondata pull request #2621: [CARBONDATA-2840] Added SDV testcases for Com...

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

[GitHub] carbondata pull request #2621: [CARBONDATA-2840] Added SDV testcases for Com...

qiuchenjian-2
GitHub user Indhumathi27 opened a pull request:

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

    [CARBONDATA-2840] Added SDV testcases for Complex DataType Support

    **Added SDV testcases for Complex DataType Support**
   
     - [ ] Any interfaces changed?
     
     - [ ] Any backward compatibility impacted?
     
     - [ ] Document update required?
   
     - [ ] Testing done
       
           
     - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/Indhumathi27/carbondata complexsdv

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/carbondata/pull/2621.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #2621
   
----
commit f9bd3e83720b6657654d38d96f1b3d07f9172192
Author: Indhumathi27 <indhumathim27@...>
Date:   2018-08-08T10:03:36Z

    [CARBONDATA-2840] Added SDV testcases for Complex DataType Support

----


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

[GitHub] carbondata pull request #2621: [CARBONDATA-2840] Added SDV testcases for Com...

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

    https://github.com/apache/carbondata/pull/2621#discussion_r208528095
 
    --- Diff: integration/spark-common-cluster-test/src/test/scala/org/apache/carbondata/cluster/sdv/generated/ComplexDataTypeTestCase.scala ---
    @@ -0,0 +1,407 @@
    +
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.carbondata.cluster.sdv.generated
    +
    +import java.io.{ByteArrayInputStream, ByteArrayOutputStream, DataInputStream, File, InputStream}
    +import java.sql.Timestamp
    +
    +import scala.collection.mutable
    +
    +import org.apache.avro.file.DataFileWriter
    +import org.apache.avro.generic.{GenericDatumReader, GenericDatumWriter, GenericRecord}
    +import org.apache.avro.io.{DecoderFactory, Encoder}
    +import org.apache.commons.io.FileUtils
    +import org.apache.spark.sql.Row
    +import org.apache.spark.sql.common.util.QueryTest
    +import org.apache.spark.sql.test.TestQueryExecutor
    +import org.scalatest.BeforeAndAfterAll
    +
    +import org.apache.carbondata.core.constants.CarbonCommonConstants
    +import org.apache.carbondata.core.util.CarbonProperties
    +import org.apache.carbondata.sdk.file.CarbonWriter
    +
    +/**
    + * Test Class for ComplexDataTypeTestCase to verify all scenerios
    + */
    +
    +class ComplexDataTypeTestCase extends QueryTest with BeforeAndAfterAll {
    +
    +  val filePath = TestQueryExecutor.integrationPath + "/spark-common-test/src/test/resources"
    +  val writerPath =
    +    s"${ resourcesPath }" + "/SparkCarbonFileFormat/WriterOutputComplex/"
    +
    +  override def beforeAll(): Unit = {
    +    FileUtils.deleteDirectory(new File(writerPath))
    +    sql("DROP TABLE IF EXISTS complexcarbontable")
    +    sql("DROP TABLE IF EXISTS test")
    +    sql("DROP TABLE IF EXISTS sdkOutputTable")
    +  }
    +
    +  override def afterAll(): Unit = {
    +    FileUtils.deleteDirectory(new File(writerPath))
    +    sql("DROP TABLE IF EXISTS complexcarbontable")
    +    sql("DROP TABLE IF EXISTS test")
    +    sql("DROP TABLE IF EXISTS sdkOutputTable")
    +    CarbonProperties.getInstance()
    +      .addProperty(CarbonCommonConstants.CARBON_TIMESTAMP_FORMAT,
    +        CarbonCommonConstants.CARBON_TIMESTAMP_DEFAULT_FORMAT)
    +      .addProperty(CarbonCommonConstants.CARBON_DATE_FORMAT,
    +        CarbonCommonConstants.CARBON_DATE_DEFAULT_FORMAT)
    +  }
    +
    +  // check create table with complex data type
    +  test("test Complex_DataType-001") {
    +    sql("DROP TABLE IF EXISTS test")
    +    sql(
    +      "create table test(person struct<detail:struct<id:int,name:string,height:double," +
    +      "status:boolean,dob:date,dobt:timestamp>>) stored by 'carbondata'")
    +    sql("DROP TABLE IF EXISTS test")
    +    sql(
    +      "create table test(p1 array<int>,p2 array<string>,p3 array<double>,p4 array<boolean>,p5 " +
    +      "array<date>,p6 array<timestamp>) stored by 'carbondata'")
    +  }
    --- End diff --
   
    remove this test case. It is not making use of the cluster. If it is in UT, it is enough


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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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


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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

    https://github.com/apache/carbondata/pull/2621
 
    Build Failed  with Spark 2.3.1, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.3/8423/



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata pull request #2621: [CARBONDATA-2840] Added SDV testcases for Com...

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

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


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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

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



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

[GitHub] carbondata issue #2621: [CARBONDATA-2840] Added SDV testcases for Complex Da...

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

    https://github.com/apache/carbondata/pull/2621
 
    Build Success with Spark 2.3.2, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/9955/



---