You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Daniel Russo (Jira)" <ji...@apache.org> on 2020/11/20 18:30:00 UTC

[jira] [Updated] (ARROW-10666) [Rust] [DataFusion] Support nested SELECT statements

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

Daniel Russo updated ARROW-10666:
---------------------------------
    Description: 
Support nested SELECT statements, for example:

{code}
SELECT a, b 
FROM (
  SELECT a, b, c 
  FROM (
    SELECT a, b, c, d 
    FROM t
  )
)
{code}

  was:
Support nested SELECT statements, for example:

{code}
SELECT a, b 
FROM (
  SELECT a, b, c 
  FROM (
    SELECT a, b, c, d FROM t
  )
)
{code}


> [Rust] [DataFusion] Support nested SELECT statements
> ----------------------------------------------------
>
>                 Key: ARROW-10666
>                 URL: https://issues.apache.org/jira/browse/ARROW-10666
>             Project: Apache Arrow
>          Issue Type: New Feature
>          Components: Rust - DataFusion
>            Reporter: Daniel Russo
>            Priority: Minor
>
> Support nested SELECT statements, for example:
> {code}
> SELECT a, b 
> FROM (
>   SELECT a, b, c 
>   FROM (
>     SELECT a, b, c, d 
>     FROM t
>   )
> )
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)