You've already forked go-clickhouse
mirror of
https://github.com/uptrace/go-clickhouse.git
synced 2025-07-15 01:04:19 +02:00
feat: add support for DateTime64
This commit is contained in:
@ -1,20 +1,21 @@
|
||||
package chtype
|
||||
|
||||
const (
|
||||
Any = "_" // for decoding into interface{}
|
||||
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"
|
||||
Date = "Date"
|
||||
IPv6 = "IPv6"
|
||||
Any = "_" // for decoding into interface{}
|
||||
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"
|
||||
)
|
||||
|
Reference in New Issue
Block a user