Github user manishgupta88 commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2940#discussion_r238152763
  
    --- Diff: 
integration/spark-common-test/src/test/scala/org/apache/carbondata/integration/spark/testsuite/preaggregate/TestPreAggCreateCommand.scala
 ---
    @@ -463,6 +464,39 @@ class TestPreAggCreateCommand extends QueryTest with 
BeforeAndAfterAll {
         executorService.shutdown()
       }
     
    +  test("support set carbon.query.directQueryOnDataMap.enabled=true") {
    +    val rootPath = new File(this.getClass.getResource("/").getPath
    +      + "../../../..").getCanonicalPath
    +    val testData = 
s"$rootPath/integration/spark-common-test/src/test/resources/sample.csv"
    +    sql("drop table if exists mainTable")
    +    sql(
    +      s"""
    +         | CREATE TABLE mainTable
    +         |   (id Int,
    +         |   name String,
    +         |   city String,
    +         |   age Int)
    +         | STORED BY 'org.apache.carbondata.format'
    +      """.stripMargin);
    +
    +
    +    sql(
    +      s"""
    +         | LOAD DATA LOCAL INPATH '$testData'
    +         | into table mainTable
    +       """.stripMargin);
    --- End diff --
    
    for scala code semi-colon `;` is not required


---

Reply via email to