jw-amazon opened a new issue, #10732: URL: https://github.com/apache/hudi/issues/10732
Hello, I am opening this feature request to support Schema evolution for complex type field. Currently, we have defined a field like this ``` complex_attributes array<struct<id:string, field1 :double, snapshot_date:DATE>> ``` We like to evolve field to ``` complex_attributes array<struct<id:string, field1 :double, field2: string, snapshot_date:DATE>> ``` The [Alter Table command](https://hudi.apache.org/docs/next/schema_evolution/#altering-columns) doesn't support this. The following error was returned ``` An error was encountered: ALTER TABLE CHANGE COLUMN is not supported for changing column complex_attributes... ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
