[ 
https://issues.apache.org/jira/browse/DRILL-1846?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Aman Sinha updated DRILL-1846:
------------------------------
    Description: 
In the following the subquery does an order by on n_regionkey and the outer 
query does another order-by on n_nationkey.  I have to set the slice_target = 1 
for this particular data set but for the general case it is not needed.  This 
query errors out:
{code}
alter session set `planner.slice_target` = 1
 select n.n_nationkey 
      from  (select n_nationkey, n_regionkey from cp.`tpch/nation.parquet` 
                   order by n_regionkey) n 
  order by n.n_nationkey;

  Query failed: Query failed: Unexpected exception during fragment 
initialization: SingleMergeExchange only supports a single receiver endpoint
{code}



  was:
In the following the subquery does an order by on n_regionkey and the outer 
query does another order-by on n_nationkey.  This query errors out:
{code}
 select n.n_nationkey 
      from  (select n_nationkey, n_regionkey from cp.`tpch/nation.parquet` 
                   order by n_regionkey) n 
  order by n.n_nationkey;

  Query failed: Query failed: Unexpected exception during fragment 
initialization: SingleMergeExchange only supports a single receiver endpoint
{code}




> Re-ordering output of a subquery on a different column causes error
> -------------------------------------------------------------------
>
>                 Key: DRILL-1846
>                 URL: https://issues.apache.org/jira/browse/DRILL-1846
>             Project: Apache Drill
>          Issue Type: Bug
>            Reporter: Aman Sinha
>            Assignee: Aman Sinha
>
> In the following the subquery does an order by on n_regionkey and the outer 
> query does another order-by on n_nationkey.  I have to set the slice_target = 
> 1 for this particular data set but for the general case it is not needed.  
> This query errors out:
> {code}
> alter session set `planner.slice_target` = 1
>  select n.n_nationkey 
>       from  (select n_nationkey, n_regionkey from cp.`tpch/nation.parquet` 
>                    order by n_regionkey) n 
>   order by n.n_nationkey;
>   Query failed: Query failed: Unexpected exception during fragment 
> initialization: SingleMergeExchange only supports a single receiver endpoint
> {code}



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

Reply via email to