Skip to content

Latest commit

 

History

History
221 lines (129 loc) · 5.32 KB

File metadata and controls

221 lines (129 loc) · 5.32 KB

minisql.sql.types.SqlTypeKind

Home · Source file

SqlTypeKind

enum SqlTypeKind

Type 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.

View source

Members

BigInt

BigInt = 4

Represents the big int variant.

View source

Binary

Binary = 11

Represents the binary variant.

View source

Blob

Blob = 13

Represents the blob variant.

View source

Boolean

Boolean = 1

Represents the boolean variant.

View source

Char

Char = 8

Represents the char variant.

View source

Date

Date = 14

Represents the date variant.

View source

Decimal

Decimal = 7

Represents the decimal variant.

View source

Double

Double = 6

Represents the double variant.

View source

Integer

Integer = 3

Represents the integer variant.

View source

Real

Real = 5

Represents the real variant.

View source

SmallInt

SmallInt = 2

Represents the small int variant.

View source

Text

Text = 10

Represents the text variant.

View source

Time

Time = 15

Represents the time variant.

View source

Timestamp

Timestamp = 16

Represents the timestamp variant.

View source

Unknown

Unknown = 0

Represents the unknown variant.

View source

VarBinary

VarBinary = 12

Represents the var binary variant.

View source

VarChar

VarChar = 9

Represents the var char variant.

View source