[jira] [Created] (FLINK-14386) Support computed column for create table statement

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (FLINK-14386) Support computed column for create table statement

Shang Yuanchun (Jira)
Danny Chen created FLINK-14386:
----------------------------------

             Summary: Support computed column for create table statement
                 Key: FLINK-14386
                 URL: https://issues.apache.org/jira/browse/FLINK-14386
             Project: Flink
          Issue Type: Improvement
          Components: Table SQL / API
    Affects Versions: 1.10.0
            Reporter: Danny Chen
             Fix For: 1.10.0


Support syntax like:
{code:sql}
create table t(
  a int,
  b as a + 1,
  c as my_udf(a)
) with (
  ...
)
{code}

The columns b and c are all computed(virtual) column for table t.



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