[
https://issues.apache.org/jira/browse/DRILL-2318?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Abhishek Girish updated DRILL-2318:
-----------------------------------
Attachment: drillbit.log
> Query fails when an ORDER BY clause is used with CTEs
> ------------------------------------------------------
>
> Key: DRILL-2318
> URL: https://issues.apache.org/jira/browse/DRILL-2318
> Project: Apache Drill
> Issue Type: Bug
> Components: Query Planning & Optimization
> Affects Versions: 0.8.0
> Reporter: Abhishek Girish
> Assignee: Jinfeng Ni
> Attachments: drillbit.log
>
>
> Adding a WITH clause with a simple CTE causes a query with an ORDER BY to
> fail. This happens even when the CTE is unrelated to the main query.
> *The following query fails to execute:*
> {code:sql}
> WITH
> x
> AS (SELECT ss_sold_date_sk a1
> FROM store_sales)
> SELECT x.a1
> FROM x
> ORDER BY
> x.a1;
> {code}
> Error:
> Query failed: SqlValidatorException: Table 'x' not found
> Log attached.
> *The following query executes fine:*
> {code:sql}
> WITH
> x
> AS (SELECT ss_sold_date_sk a1
> FROM store_sales)
> SELECT x.a1
> FROM x
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)