You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Danny Chan (JIRA)" <ji...@apache.org> on 2019/08/14 03:42:00 UTC

[jira] [Updated] (CALCITE-3213) Support complex type expressions for SqlDataTypeSpec

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

Danny Chan updated CALCITE-3213:
--------------------------------
    Description: 
We should support nested struct type like:

{code:sql}
ROW(
foo NUMBER(5, 2) NOT NULL,
rec ROW(b BOOLEAN, i MyUDT NOT NULL))
{code}


  was:
We should support nested struct type like:

{code:sql}
ROW(
NUMBER(5, 2) NOT NULL AS foo,
ROW(BOOLEAN AS b, MyUDT NOT NULL AS i) AS rec)
{code}



> Support complex type expressions for  SqlDataTypeSpec
> -----------------------------------------------------
>
>                 Key: CALCITE-3213
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3213
>             Project: Calcite
>          Issue Type: Improvement
>          Components: core
>    Affects Versions: 1.20.0
>            Reporter: Danny Chan
>            Assignee: Danny Chan
>            Priority: Major
>             Fix For: 1.21.0
>
>
> We should support nested struct type like:
> {code:sql}
> ROW(
> foo NUMBER(5, 2) NOT NULL,
> rec ROW(b BOOLEAN, i MyUDT NOT NULL))
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)