blob: ce374eb8356b08ef998abf5b43f202a0cf427e3b [file] [log] [blame]
/*
* 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.spark.testsuite.createTable
import org.apache.spark.sql.test.util.QueryTest
import org.scalatest.BeforeAndAfterAll
import org.apache.carbondata.common.exceptions.sql.MalformedCarbonCommandException
/**
* Test functionality of create table with page size
*/
class TestCreateTableWithPageSizeInMb extends QueryTest with BeforeAndAfterAll {
override def beforeAll {
sql("use default")
sql("drop table if exists source")
}
test("test create table with invalid page size") {
val ex = intercept[MalformedCarbonCommandException] {
sql(
"CREATE TABLE T1(name String) STORED AS CARBONDATA TBLPROPERTIES" +
"('table_page_size_inmb'='3X')")
}
assert(ex.getMessage.toLowerCase.contains("invalid table_page_size_inmb"))
val ex1 = intercept[MalformedCarbonCommandException] {
sql(
"CREATE TABLE T1(name String) STORED AS CARBONDATA TBLPROPERTIES" +
"('table_page_size_inmb'='0')")
}
assert(ex1.getMessage.toLowerCase.contains("invalid table_page_size_inmb"))
val ex2 = intercept[MalformedCarbonCommandException] {
sql(
"CREATE TABLE T1(name String) STORED AS CARBONDATA TBLPROPERTIES" +
"('table_page_size_inmb'='-1')")
}
assert(ex2.getMessage.toLowerCase.contains("invalid table_page_size_inmb"))
val ex3 = intercept[MalformedCarbonCommandException] {
sql(
"CREATE TABLE T1(name String) STORED AS CARBONDATA TBLPROPERTIES" +
"('table_page_size_inmb'='1999')")
}
assert(ex3.getMessage.toLowerCase.contains("invalid table_page_size_inmb"))
}
override def afterAll {
sql("use default")
sql("drop table if exists source")
}
}