[
https://issues.apache.org/jira/browse/DRILL-3374?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14601933#comment-14601933
]
Khurram Faraaz commented on DRILL-3374:
---------------------------------------
vwOnParq_wCst is a view defined in Drill over parquet data.
{code}
create view vwOnParq_wCst (col_int, col_bigint, col_char_2, col_vchar_52,
col_tmstmp, col_dt, col_booln, col_dbl, col_tm) as select CAST(col_int AS
INTEGER), CAST(col_bigint AS BIGINT), CAST(col_char_2 AS CHAR(2)),
CAST(col_vchar_52 AS VARCHAR(52)), CAST(col_tmstmp AS TIMESTAMP), CAST(col_dt
AS DATE), CAST(col_booln AS BOOLEAN), CAST(col_dbl AS DOUBLE), CAST(col_tm AS
TIME) from `tblForView/0_0_0.parquet`
{code}
> Need a better error message - CTAS with PARTITION BY
> ----------------------------------------------------
>
> Key: DRILL-3374
> URL: https://issues.apache.org/jira/browse/DRILL-3374
> Project: Apache Drill
> Issue Type: Bug
> Components: Execution - Flow
> Affects Versions: 1.1.0
> Reporter: Khurram Faraaz
> Assignee: Steven Phillips
> Labels: window_function
>
> We need to return message that CTAS with PARTITION BY clause is only
> supported over parquet files.
> {code}
> 0: jdbc:drill:schema=dfs.tmp> create table ctas_prtng_01 partition by
> (col_vchar_52) as select * from vwOnParq_wCst;
> Error: SYSTEM ERROR: IllegalArgumentException: partition col col_vchar_52
> could not be resolved in table's column lists!
> [Error Id: 7cb227c1-65c5-48cb-a00b-1a89a5309bc8 on centos-04.qa.lab:31010]
> (state=,code=0)
> {code}
> Table used in above CTAS does exist and the column used to partition by also
> exists.
> {code}
> 0: jdbc:drill:schema=dfs.tmp> describe vwOnParq_wCst;
> +---------------+--------------------+--------------+
> | COLUMN_NAME | DATA_TYPE | IS_NULLABLE |
> +---------------+--------------------+--------------+
> | col_int | INTEGER | YES |
> | col_bigint | BIGINT | YES |
> | col_char_2 | CHARACTER | YES |
> | col_vchar_52 | CHARACTER VARYING | YES |
> | col_tmstmp | TIMESTAMP | YES |
> | col_dt | DATE | YES |
> | col_booln | BOOLEAN | YES |
> | col_dbl | DOUBLE | YES |
> | col_tm | TIME | YES |
> +---------------+--------------------+--------------+
> 9 rows selected (0.411 seconds)
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)