Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id BF9DC200CB3 for ; Mon, 26 Jun 2017 13:39:16 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id BE5B1160BD9; Mon, 26 Jun 2017 11:39:16 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E7F6A160BDE for ; Mon, 26 Jun 2017 13:39:15 +0200 (CEST) Received: (qmail 49817 invoked by uid 500); 26 Jun 2017 11:39:15 -0000 Mailing-List: contact issues-help@carbondata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@carbondata.apache.org Delivered-To: mailing list issues@carbondata.apache.org Received: (qmail 49792 invoked by uid 99); 26 Jun 2017 11:39:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2017 11:39:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4F77FDFA3E; Mon, 26 Jun 2017 11:39:14 +0000 (UTC) From: kunal642 To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1094: [CARBONDATA-1181] Show partitions Content-Type: text/plain Message-Id: <20170626113914.4F77FDFA3E@git1-us-west.apache.org> Date: Mon, 26 Jun 2017 11:39:14 +0000 (UTC) archived-at: Mon, 26 Jun 2017 11:39:16 -0000 Github user kunal642 commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1094#discussion_r123987774 --- Diff: integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/partition/TestShowPartitions.scala --- @@ -0,0 +1,188 @@ +/* + * 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.partition + +import java.sql.Timestamp + +import org.apache.spark.sql.AnalysisException +import org.apache.spark.sql.catalyst.analysis.NoSuchDatabaseException +import org.apache.spark.sql.Row +import org.apache.spark.sql.common.util.QueryTest +import org.scalatest.BeforeAndAfterAll + +import org.apache.carbondata.core.constants.CarbonCommonConstants +import org.apache.carbondata.core.util.CarbonProperties + + + +class TestShowPartition extends QueryTest with BeforeAndAfterAll { + override def beforeAll = { + + CarbonProperties.getInstance() + .addProperty(CarbonCommonConstants.CARBON_TIMESTAMP_FORMAT, "dd-MM-yyyy") + + sql("drop table if exists notPartitionTable") + sql(""" + | CREATE TABLE notPartitionTable + | ( + | vin String, + | logdate Timestamp, + | phonenumber Int, + | country String, + | area String + | ) + | STORED BY 'carbondata' + """.stripMargin) + + sql("drop table if exists hashTable") + sql( + """ + | CREATE TABLE hashTable (empname String, designation String, doj Timestamp, + | workgroupcategory int, workgroupcategoryname String, deptno int, deptname String, + | projectcode int, projectjoindate Timestamp, projectenddate Timestamp,attendance int, + | utilization int,salary int) + | PARTITIONED BY (empno int) + | STORED BY 'org.apache.carbondata.format' + | TBLPROPERTIES('PARTITION_TYPE'='HASH','NUM_PARTITIONS'='3') + """.stripMargin) + + sql("drop table if exists rangeTable") + sql( + """ + | CREATE TABLE rangeTable (empno int, empname String, designation String, + | workgroupcategory int, workgroupcategoryname String, deptno int, deptname String, + | projectcode int, projectjoindate Timestamp, projectenddate Timestamp,attendance int, + | utilization int,salary int) + | PARTITIONED BY (doj Timestamp) + | STORED BY 'org.apache.carbondata.format' + | TBLPROPERTIES('PARTITION_TYPE'='RANGE', + | 'RANGE_INFO'='01-01-2010, 01-01-2015') + """.stripMargin) + + sql("drop table if exists listTable") + sql( + """ + | CREATE TABLE listTable (empno int, empname String, designation String, doj Timestamp, + | workgroupcategoryname String, deptno int, deptname String, + | projectcode int, projectjoindate Timestamp, projectenddate Timestamp,attendance int, + | utilization int,salary int) + | PARTITIONED BY (workgroupcategory int) + | STORED BY 'org.apache.carbondata.format' + | TBLPROPERTIES('PARTITION_TYPE'='LIST', + | 'LIST_INFO'='0, 1, (2, 3)') + """.stripMargin) + + sql(s"CREATE DATABASE if not exists partitionDB") + sql("drop table if exists partitionDB.hashTable") + sql("drop table if exists partitionDB.rangeTable") + sql("drop table if exists partitionDB.listTable") + sql( + """ + | CREATE TABLE partitionDB.hashTable (empname String, designation String, doj Timestamp, + | workgroupcategory int, workgroupcategoryname String, deptno int, deptname String, + | projectcode int, projectjoindate Timestamp, projectenddate Timestamp,attendance int, + | utilization int,salary int) + | PARTITIONED BY (empno int) + | STORED BY 'org.apache.carbondata.format' + | TBLPROPERTIES('PARTITION_TYPE'='HASH','NUM_PARTITIONS'='3') + """.stripMargin) + sql( + """ + | CREATE TABLE partitionDB.rangeTable (empno int, empname String, designation String, + | workgroupcategory int, workgroupcategoryname String, deptno int, deptname String, + | projectcode int, projectjoindate Timestamp, projectenddate Timestamp,attendance int, + | utilization int,salary int) + | PARTITIONED BY (doj Timestamp) + | STORED BY 'org.apache.carbondata.format' + | TBLPROPERTIES('PARTITION_TYPE'='RANGE', + | 'RANGE_INFO'='01-01-2010, 01-01-2015') + """.stripMargin) + sql( + """ + | CREATE TABLE partitionDB.listTable (empno int, empname String, designation String, + | doj Timestamp,workgroupcategoryname String, deptno int, deptname String, + | projectcode int, projectjoindate Timestamp, projectenddate Timestamp,attendance int, + | utilization int,salary int) + | PARTITIONED BY (workgroupcategory int) + | STORED BY 'org.apache.carbondata.format' + | TBLPROPERTIES('PARTITION_TYPE'='LIST', + | 'LIST_INFO'='0, 1, (2, 3)') + """.stripMargin) + + } + + test("show partition table: exception when show not partition table") { + var exceptionFlg = false + try { --- End diff -- use intercept instead of try catch --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---