swapna267 opened a new pull request, #12116:
URL: https://github.com/apache/iceberg/pull/12116

   This PR addresses 
   1. Creation of dynamic Iceberg table in Flink Catalog using the underlying 
physical Iceberg table using LIKE clause.
   2. Iceberg Source to support Source Watermark, so it can be used in Flink 
WINDOW functions. 
   
   ```
   CREATE TABLE table_wm (
         eventTS AS CAST(t1 AS TIMESTAMP(3)),
         WATERMARK FOR eventTS AS SOURCE_WATERMARK()
   ) WITH (
     'connector'='iceberg',
     'watermark-column'='t1',
   ) LIKE iceberg_catalog.db.table;
   ```
   
   **Reference:**
   https://github.com/apache/iceberg/issues/10219
   https://github.com/apache/iceberg/pull/9346


-- 
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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to