Kafka source table: CREATE TABLE out_order ( MySQL dimention table: CREATE TABLE dim_owner ( When i submit the sql: SELECT o.out_order_code, o.input_date, o.owner_code, d.owner_name FROM out_order as o JOIN dim_owner FOR SYSTEM_TIME AS OF PROCTIME() as d ON o.owner_code = d.owner_code; There's error: [ERROR] Could not execute SQL statement. Reason: org.apache.flink.table.api.TableException: Temporal table join currently only supports 'FOR SYSTEM_TIME AS OF' left table's proctime field, doesn't support 'PROCTIME()' Thanks, Lei |
We don't support 'PROCTIME()' in a temporal table join. Please use a left table's proctime field. [1] [1] https://ci.apache.org/projects/flink/flink-docs-release-1.10/dev/table/streaming/joins.html#usage-1 Best Regards, Zhenghua Gao
|
Thanks, works now. Seems the open source version is different from alibaba cloud:
|
You are right. The product on alibaba cloud is based on an internal branch. There are much discrepancy between them. Best Regards, Zhenghua Gao
|
Free forum by Nabble | Edit this page |