You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Jinfeng Ni (JIRA)" <ji...@apache.org> on 2015/06/25 20:47:04 UTC

[jira] [Created] (DRILL-3373) CTAS partition by with empty list of partitioning columns should be blocked in parser

Jinfeng Ni created DRILL-3373:
---------------------------------

             Summary: CTAS partition by with empty list of partitioning columns should be blocked in parser
                 Key: DRILL-3373
                 URL: https://issues.apache.org/jira/browse/DRILL-3373
             Project: Apache Drill
          Issue Type: Bug
          Components: SQL Parser
            Reporter: Jinfeng Ni
            Assignee: Jinfeng Ni
             Fix For: 1.1.0


Sql parser should raising parsing error, when the CTAS statement has "PARTITION BY", yet the list of partitioning column is empty.

{code}
create table nation_par 
partition by
as 
select n_nationkey, n_name, n_comment 
from cp.`tpch/nation.parquet`;
{code}

The expected behavior would be SQL parer error :
{code}
Error: PARSE ERROR: Encountered "as" at line 3, column 1.
Was expecting:
    "(" ...
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)