enum SqlTypeKindType codes intentionally match storage.row_codec so catalog metadata can be turned into row schemas without a translation table. Enumerates the supported SQL type kind variants used by this module.
BigInt = 4Represents the big int variant.
Binary = 11Represents the binary variant.
Blob = 13Represents the blob variant.
Boolean = 1Represents the boolean variant.
Char = 8Represents the char variant.
Date = 14Represents the date variant.
Decimal = 7Represents the decimal variant.
Double = 6Represents the double variant.
Integer = 3Represents the integer variant.
Real = 5Represents the real variant.
SmallInt = 2Represents the small int variant.
Text = 10Represents the text variant.
Time = 15Represents the time variant.
Timestamp = 16Represents the timestamp variant.
Unknown = 0Represents the unknown variant.
VarBinary = 12Represents the var binary variant.
VarChar = 9Represents the var char variant.