Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Flink Data Type

Java Sql Data Type

Java Data Type

CharType/VarCharType

CHAR/VARCHAR

String

BooleanType

BOOLEAN

Boolean

TinyIntType

TINYINT

Byte

SmallIntType

SMALLINT

Short

IntType

INTEGER

Int

BigIntType

BIGINT

Long

FloatType

FLOAT

Float

DoubleType

DOUBLE

Double

DecimalType

DECIMAL

BigDecimal

BinaryType/VarBinaryType

BINARY/VARBINARY

byte[]

DateType

DATE

Date

TimeType

TIME

Time

TimestampType

TIMESTAMP

Timestamp

ZonedTimestapTypeLocalZonedTimestapType

TIMESTAMP_WITH_TIMEZONELZT

ZonedDateTimeInstant

ArrayType

ARRAY

Array

RowType

ROW

Row(Flink Row Data)

MapType

MAP

Map<K, V>

...