pyflink.table.types.DataTypes.TIMESTAMP_LTZ#
- static DataTypes.TIMESTAMP_LTZ(precision: int = 6, nullable: bool = True) pyflink.table.types.LocalZonedTimestampType [source]#
Data type of a timestamp WITH LOCAL time zone. This is a shortcut for
DataTypes.TIMESTAMP_WITH_LOCAL_TIME_ZONE(precision, nullable)
.- Parameters
precision – int, the number of digits of fractional seconds. It must have a value between 0 and 9 (both inclusive). (default: 6, only supports 3 when bridged to DataStream)
nullable – boolean, whether the type can be null (None) or not.
See also
TIMESTAMP_WITH_LOCAL_TIME_ZONE(precision, nullable)()