-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.ts
39 lines (37 loc) · 876 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
export enum YQLType {
// Numeric
Bool = 'Bool',
Int8 = 'Int8',
Int16 = 'Int16',
Int32 = 'Int32',
Int64 = 'Int64',
Uint8 = 'Uint8',
Uint16 = 'Uint16',
Uint32 = 'Uint32',
Uint64 = 'Uint64',
Float = 'Float',
Double = 'Double',
Decimal = 'Decimal',
// String
String = 'String',
Utf8 = 'Utf8',
Json = 'Json',
JsonDocument = 'JsonDocument',
Yson = 'Yson',
Uuid = 'Uuid',
// Date and time
Date = 'Date',
Datetime = 'Datetime',
Timestamp = 'Timestamp',
Interval = 'Interval',
TzDate = 'TzDate',
TzDateTime = 'TzDateTime',
TzTimestamp = 'TzTimestamp',
Date32 = 'Date32',
Datetime64 = 'Datetime64',
Timestamp64 = 'Timestamp64',
Interval64 = 'Interval64',
TzDate32 = 'TzDate32',
TzDatetime64 = 'TzDatetime64',
TzTimestamp64 = 'TzTimestamp64',
}