[jira] [Updated] (HUDI-7265) Support schema evolution by Flink SQL using HoodieHiveCatalog

2024-01-12 Thread Danny Chen (Jira)


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

Danny Chen updated HUDI-7265:
-
Fix Version/s: 1.0.0

> Support schema evolution by Flink SQL using HoodieHiveCatalog
> -
>
> Key: HUDI-7265
> URL: https://issues.apache.org/jira/browse/HUDI-7265
> Project: Apache Hudi
>  Issue Type: Improvement
>  Components: flink-sql
>Reporter: Jing Zhang
>Priority: Major
>  Labels: pull-request-available
> Fix For: 1.0.0
>
>
> Since Flink 1.17, Flink SQL support more advanced alter table syntax.
> {code:sql}
> -- add a new column 
> ALTER TABLE MyTable ADD category_id STRING COMMENT 'identifier of the 
> category';
> -- modify a column type, comment and position
> ALTER TABLE MyTable MODIFY measurement double COMMENT 'unit is bytes per 
> second' AFTER `id`;
> -- drop columns
> ALTER TABLE MyTable DROP (col1, col2, col3);
> -- rename column
> ALTER TABLE MyTable RENAME request_body TO payload;
> {code}
> Find more detail information in [Flink Alter Table SQL 
> |https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/table/sql/alter/].
> We could support schema evolution by Flink SQL.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HUDI-7265) Support schema evolution by Flink SQL using HoodieHiveCatalog

2024-01-02 Thread Jing Zhang (Jira)


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

Jing Zhang updated HUDI-7265:
-
Component/s: flink-sql

> Support schema evolution by Flink SQL using HoodieHiveCatalog
> -
>
> Key: HUDI-7265
> URL: https://issues.apache.org/jira/browse/HUDI-7265
> Project: Apache Hudi
>  Issue Type: Improvement
>  Components: flink-sql
>Reporter: Jing Zhang
>Priority: Major
>  Labels: pull-request-available
>
> Since Flink 1.17, Flink SQL support more advanced alter table syntax.
> {code:sql}
> -- add a new column 
> ALTER TABLE MyTable ADD category_id STRING COMMENT 'identifier of the 
> category';
> -- modify a column type, comment and position
> ALTER TABLE MyTable MODIFY measurement double COMMENT 'unit is bytes per 
> second' AFTER `id`;
> -- drop columns
> ALTER TABLE MyTable DROP (col1, col2, col3);
> -- rename column
> ALTER TABLE MyTable RENAME request_body TO payload;
> {code}
> Find more detail information in [Flink Alter Table SQL 
> |https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/table/sql/alter/].
> We could support schema evolution by Flink SQL.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HUDI-7265) Support schema evolution by Flink SQL using HoodieHiveCatalog

2023-12-27 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated HUDI-7265:
-
Labels: pull-request-available  (was: )

> Support schema evolution by Flink SQL using HoodieHiveCatalog
> -
>
> Key: HUDI-7265
> URL: https://issues.apache.org/jira/browse/HUDI-7265
> Project: Apache Hudi
>  Issue Type: Improvement
>Reporter: Jing Zhang
>Priority: Major
>  Labels: pull-request-available
>
> Since Flink 1.17, Flink SQL support more advanced alter table syntax.
> {code:sql}
> -- add a new column 
> ALTER TABLE MyTable ADD category_id STRING COMMENT 'identifier of the 
> category';
> -- modify a column type, comment and position
> ALTER TABLE MyTable MODIFY measurement double COMMENT 'unit is bytes per 
> second' AFTER `id`;
> -- drop columns
> ALTER TABLE MyTable DROP (col1, col2, col3);
> -- rename column
> ALTER TABLE MyTable RENAME request_body TO payload;
> {code}
> Find more detail information in [Flink Alter Table SQL 
> |https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/table/sql/alter/].
> We could support schema evolution by Flink SQL.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HUDI-7265) Support schema evolution by Flink SQL using HoodieHiveCatalog

2023-12-27 Thread Jing Zhang (Jira)


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

Jing Zhang updated HUDI-7265:
-
Description: 
Since Flink 1.17, Flink SQL support more advanced alter table syntax.

{code:sql}
-- add a new column 
ALTER TABLE MyTable ADD category_id STRING COMMENT 'identifier of the category';
-- modify a column type, comment and position
ALTER TABLE MyTable MODIFY measurement double COMMENT 'unit is bytes per 
second' AFTER `id`;
-- drop columns
ALTER TABLE MyTable DROP (col1, col2, col3);
-- rename column
ALTER TABLE MyTable RENAME request_body TO payload;
{code}

Find more detail information in [Flink Alter Table SQL 
|https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/table/sql/alter/].

We could support schema evolution by Flink SQL.


> Support schema evolution by Flink SQL using HoodieHiveCatalog
> -
>
> Key: HUDI-7265
> URL: https://issues.apache.org/jira/browse/HUDI-7265
> Project: Apache Hudi
>  Issue Type: Improvement
>Reporter: Jing Zhang
>Priority: Major
>
> Since Flink 1.17, Flink SQL support more advanced alter table syntax.
> {code:sql}
> -- add a new column 
> ALTER TABLE MyTable ADD category_id STRING COMMENT 'identifier of the 
> category';
> -- modify a column type, comment and position
> ALTER TABLE MyTable MODIFY measurement double COMMENT 'unit is bytes per 
> second' AFTER `id`;
> -- drop columns
> ALTER TABLE MyTable DROP (col1, col2, col3);
> -- rename column
> ALTER TABLE MyTable RENAME request_body TO payload;
> {code}
> Find more detail information in [Flink Alter Table SQL 
> |https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/table/sql/alter/].
> We could support schema evolution by Flink SQL.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)