talatuyarer opened a new pull request, #17874: URL: https://github.com/apache/iceberg/pull/17874
Completes the Flink view DDL surface (follow-up to #17859 and #17873, part of #17858): - `ALTER VIEW ... AS query` - View property updates — applied through `updateProperties()` as a set-only diff. Note that Flink's default SQL dialect has no `ALTER VIEW ... SET` syntax (only`RENAME` and `AS`), so property changes arrive via the catalog API (e.g. from the Hive dialect); the diff is set-only because Flink SQL cannot express removals and removing keys absent from the incoming options could strip properties Flink does not carry over. - New catalog option `view-dialect-strict` (default `false`) — when enabled, reading a view that has no `flink` SQL representation fails fast instead of falling back to the closest dialect. The default remains the lenient closest-match behavior documented in the read-path PR. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
