pyflink.table.types.DataTypes.DATE#
- static DataTypes.DATE(nullable: bool = True) pyflink.table.types.DateType [source]#
Data type of a date consisting of year-month-day with values ranging from
0000-01-01
to9999-12-31
.Compared to the SQL standard, the range starts at year 0000.
- Parameters
nullable – boolean, whether the type can be null (None) or not.