Hi 各位大佬

       .field("event_time", TIMESTAMP()).rowtime(
          new Rowtime()
          .timestampsFromField("maxwell_ts")
          .watermarksPeriodicBounded(60000)
        )


我这个 maxwell_ts 是 milliseconds ,直接这么用会报错:

Type TIMESTAMP(6) of table field ‘event_time’ does not match with the
physical type


有类似

event_time as to_timestamp(maxwell_ts)


这么的操作码?

回复