abhisai muramsetti
06/14/2024, 12:26 PMYubin Li
06/15/2024, 11:36 AMdescribe table_name .
Flink SQL> create table t1 (id int, ts timestamp(3), watermark for ts as ts - interval '1' minutes) with ('connector'='datagen');
[INFO] Execute statement succeeded.
Flink SQL> desc t1;
+------+------------------------+------+-----+--------+----------------------------+
| name | type | null | key | extras | watermark |
+------+------------------------+------+-----+--------+----------------------------+
| id | INT | TRUE | | | |
| ts | TIMESTAMP(3) *ROWTIME* | TRUE | | | `ts` - INTERVAL '1' MINUTE |
+------+------------------------+------+-----+--------+----------------------------+
2 rows in setabhisai muramsetti
06/15/2024, 6:40 PMabhisai muramsetti
06/15/2024, 6:40 PM