-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathconstants.js
More file actions
96 lines (88 loc) · 1.7 KB
/
Copy pathconstants.js
File metadata and controls
96 lines (88 loc) · 1.7 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/** @type {import('../src/types.d.ts').ParquetType[]} */
export const ParquetTypes = [
'BOOLEAN',
'INT32',
'INT64',
'INT96', // deprecated
'FLOAT',
'DOUBLE',
'BYTE_ARRAY',
'FIXED_LEN_BYTE_ARRAY',
]
/** @type {import('../src/types.d.ts').Encoding[]} */
export const Encodings = [
'PLAIN',
'GROUP_VAR_INT', // deprecated
'PLAIN_DICTIONARY',
'RLE',
'BIT_PACKED', // deprecated
'DELTA_BINARY_PACKED',
'DELTA_LENGTH_BYTE_ARRAY',
'DELTA_BYTE_ARRAY',
'RLE_DICTIONARY',
'BYTE_STREAM_SPLIT',
'ALP',
]
/** @type {import('../src/types.d.ts').FieldRepetitionType[]} */
export const FieldRepetitionTypes = [
'REQUIRED',
'OPTIONAL',
'REPEATED',
]
/** @type {import('../src/types.d.ts').ConvertedType[]} */
export const ConvertedTypes = [
'UTF8',
'MAP',
'MAP_KEY_VALUE',
'LIST',
'ENUM',
'DECIMAL',
'DATE',
'TIME_MILLIS',
'TIME_MICROS',
'TIMESTAMP_MILLIS',
'TIMESTAMP_MICROS',
'UINT_8',
'UINT_16',
'UINT_32',
'UINT_64',
'INT_8',
'INT_16',
'INT_32',
'INT_64',
'JSON',
'BSON',
'INTERVAL',
]
/** @type {import('../src/types.d.ts').CompressionCodec[]} */
export const CompressionCodecs = [
'UNCOMPRESSED',
'SNAPPY',
'GZIP',
'LZO',
'BROTLI',
'LZ4',
'ZSTD',
'LZ4_RAW',
]
/** @type {import('../src/types.d.ts').PageType[]} */
export const PageTypes = [
'DATA_PAGE',
'INDEX_PAGE',
'DICTIONARY_PAGE',
'DATA_PAGE_V2',
]
/** @type {import('../src/types.d.ts').BoundaryOrder[]} */
export const BoundaryOrders = [
'UNORDERED',
'ASCENDING',
'DESCENDING',
]
/** @type {import('../src/types.d.ts').EdgeInterpolationAlgorithm[]} */
export const EdgeInterpolationAlgorithms = [
'SPHERICAL',
'VINCENTY',
'THOMAS',
'ANDOYER',
'KARNEY',
]