1
0
mirror of https://github.com/uptrace/go-clickhouse.git synced 2025-06-06 23:16:18 +02:00
go-clickhouse/ch/chtype/chtype.go

23 lines
462 B
Go
Raw Normal View History

2022-01-23 09:36:24 +02:00
package chtype
const (
2022-04-29 18:51:14 +03:00
Any = "_" // for decoding into interface{}
2023-01-21 12:14:00 +02:00
Bool = "Bool"
2022-04-29 18:51:14 +03:00
String = "String"
UUID = "UUID"
Int8 = "Int8"
Int16 = "Int16"
Int32 = "Int32"
Int64 = "Int64"
UInt8 = "UInt8"
UInt16 = "UInt16"
UInt32 = "UInt32"
UInt64 = "UInt64"
Float32 = "Float32"
Float64 = "Float64"
DateTime = "DateTime"
DateTime64 = "DateTime64"
Date = "Date"
IPv6 = "IPv6"
2022-01-23 09:36:24 +02:00
)