Ctrl+K
Logo image Logo image

Site Navigation

  • API Reference
  • Examples

Site Navigation

  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
    • TableEnvironment
    • Table
    • Data Types
    • Window
    • Expressions
    • User Defined Functions
    • Descriptors
    • StatementSet
    • Catalog
  • PyFlink DataStream
  • PyFlink Common

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)()

previous

pyflink.table.types.DataTypes.TIMESTAMP_WITH_LOCAL_TIME_ZONE

next

pyflink.table.types.DataTypes.ARRAY

Show Source

Created using Sphinx 4.5.0.