@loaders.gl/parquet 4.2.0-alpha.3 → 4.2.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +269 -616
- package/dist/index.cjs.map +7 -0
- package/dist/index.d.ts +12 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/lib/arrow/convert-columns-to-row-group.js +1 -2
- package/dist/lib/arrow/convert-row-group-to-columns.js +8 -6
- package/dist/lib/arrow/convert-schema-from-parquet.d.ts +3 -3
- package/dist/lib/arrow/convert-schema-from-parquet.d.ts.map +1 -1
- package/dist/lib/arrow/convert-schema-from-parquet.js +71 -82
- package/dist/lib/arrow/convert-schema-to-parquet.d.ts +1 -1
- package/dist/lib/arrow/convert-schema-to-parquet.d.ts.map +1 -1
- package/dist/lib/arrow/convert-schema-to-parquet.js +65 -35
- package/dist/lib/constants.js +15 -2
- package/dist/lib/parsers/get-parquet-schema.d.ts +1 -1
- package/dist/lib/parsers/get-parquet-schema.d.ts.map +1 -1
- package/dist/lib/parsers/get-parquet-schema.js +9 -7
- package/dist/lib/parsers/parse-geoparquet.d.ts +1 -1
- package/dist/lib/parsers/parse-geoparquet.d.ts.map +1 -1
- package/dist/lib/parsers/parse-geoparquet.js +47 -45
- package/dist/lib/parsers/parse-parquet-to-columns.d.ts +1 -1
- package/dist/lib/parsers/parse-parquet-to-columns.d.ts.map +1 -1
- package/dist/lib/parsers/parse-parquet-to-columns.js +36 -25
- package/dist/lib/parsers/parse-parquet.d.ts +1 -1
- package/dist/lib/parsers/parse-parquet.d.ts.map +1 -1
- package/dist/lib/parsers/parse-parquet.js +62 -50
- package/dist/lib/wasm/encode-parquet-wasm.d.ts +1 -1
- package/dist/lib/wasm/encode-parquet-wasm.d.ts.map +1 -1
- package/dist/lib/wasm/encode-parquet-wasm.js +49 -12
- package/dist/lib/wasm/load-wasm.js +13 -10
- package/dist/lib/wasm/parse-parquet-wasm.d.ts +1 -1
- package/dist/lib/wasm/parse-parquet-wasm.d.ts.map +1 -1
- package/dist/lib/wasm/parse-parquet-wasm.js +19 -15
- package/dist/parquet-loader.d.ts +1 -1
- package/dist/parquet-loader.d.ts.map +1 -1
- package/dist/parquet-loader.js +78 -65
- package/dist/parquet-wasm-loader.js +25 -28
- package/dist/parquet-wasm-writer.js +19 -23
- package/dist/parquet-writer.js +17 -13
- package/dist/parquetjs/codecs/declare.d.ts +1 -1
- package/dist/parquetjs/codecs/declare.d.ts.map +1 -1
- package/dist/parquetjs/codecs/declare.js +0 -1
- package/dist/parquetjs/codecs/dictionary.js +4 -8
- package/dist/parquetjs/codecs/index.d.ts +3 -3
- package/dist/parquetjs/codecs/index.d.ts.map +1 -1
- package/dist/parquetjs/codecs/index.js +20 -17
- package/dist/parquetjs/codecs/plain.d.ts +2 -2
- package/dist/parquetjs/codecs/plain.d.ts.map +1 -1
- package/dist/parquetjs/codecs/plain.js +166 -162
- package/dist/parquetjs/codecs/rle.d.ts +2 -2
- package/dist/parquetjs/codecs/rle.d.ts.map +1 -1
- package/dist/parquetjs/codecs/rle.js +124 -105
- package/dist/parquetjs/compression.d.ts +1 -1
- package/dist/parquetjs/compression.d.ts.map +1 -1
- package/dist/parquetjs/compression.js +157 -43
- package/dist/parquetjs/encoder/parquet-encoder.d.ts +3 -3
- package/dist/parquetjs/encoder/parquet-encoder.d.ts.map +1 -1
- package/dist/parquetjs/encoder/parquet-encoder.js +406 -275
- package/dist/parquetjs/parquet-thrift/BoundaryOrder.js +12 -7
- package/dist/parquetjs/parquet-thrift/BsonType.js +31 -27
- package/dist/parquetjs/parquet-thrift/ColumnChunk.d.ts +1 -1
- package/dist/parquetjs/parquet-thrift/ColumnChunk.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/ColumnChunk.js +175 -166
- package/dist/parquetjs/parquet-thrift/ColumnIndex.d.ts +1 -1
- package/dist/parquetjs/parquet-thrift/ColumnIndex.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/ColumnIndex.js +178 -166
- package/dist/parquetjs/parquet-thrift/ColumnMetaData.d.ts +6 -6
- package/dist/parquetjs/parquet-thrift/ColumnMetaData.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/ColumnMetaData.js +359 -333
- package/dist/parquetjs/parquet-thrift/ColumnOrder.d.ts +1 -1
- package/dist/parquetjs/parquet-thrift/ColumnOrder.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/ColumnOrder.js +73 -68
- package/dist/parquetjs/parquet-thrift/CompressionCodec.js +17 -12
- package/dist/parquetjs/parquet-thrift/ConvertedType.js +31 -26
- package/dist/parquetjs/parquet-thrift/DataPageHeader.d.ts +2 -2
- package/dist/parquetjs/parquet-thrift/DataPageHeader.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/DataPageHeader.js +136 -124
- package/dist/parquetjs/parquet-thrift/DataPageHeaderV2.d.ts +2 -2
- package/dist/parquetjs/parquet-thrift/DataPageHeaderV2.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/DataPageHeaderV2.js +198 -181
- package/dist/parquetjs/parquet-thrift/DateType.js +31 -27
- package/dist/parquetjs/parquet-thrift/DecimalType.js +76 -69
- package/dist/parquetjs/parquet-thrift/DictionaryPageHeader.d.ts +1 -1
- package/dist/parquetjs/parquet-thrift/DictionaryPageHeader.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/DictionaryPageHeader.js +93 -86
- package/dist/parquetjs/parquet-thrift/Encoding.js +17 -12
- package/dist/parquetjs/parquet-thrift/EnumType.js +31 -27
- package/dist/parquetjs/parquet-thrift/FieldRepetitionType.js +12 -7
- package/dist/parquetjs/parquet-thrift/FileMetaData.d.ts +4 -4
- package/dist/parquetjs/parquet-thrift/FileMetaData.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/FileMetaData.js +217 -205
- package/dist/parquetjs/parquet-thrift/IndexPageHeader.js +31 -27
- package/dist/parquetjs/parquet-thrift/IntType.js +76 -69
- package/dist/parquetjs/parquet-thrift/JsonType.js +31 -27
- package/dist/parquetjs/parquet-thrift/KeyValue.js +73 -67
- package/dist/parquetjs/parquet-thrift/ListType.js +31 -27
- package/dist/parquetjs/parquet-thrift/LogicalType.d.ts +13 -13
- package/dist/parquetjs/parquet-thrift/LogicalType.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/LogicalType.js +325 -344
- package/dist/parquetjs/parquet-thrift/MapType.js +31 -27
- package/dist/parquetjs/parquet-thrift/MicroSeconds.js +31 -27
- package/dist/parquetjs/parquet-thrift/MilliSeconds.js +31 -27
- package/dist/parquetjs/parquet-thrift/NullType.js +31 -27
- package/dist/parquetjs/parquet-thrift/OffsetIndex.d.ts +1 -1
- package/dist/parquetjs/parquet-thrift/OffsetIndex.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/OffsetIndex.js +66 -60
- package/dist/parquetjs/parquet-thrift/PageEncodingStats.d.ts +2 -2
- package/dist/parquetjs/parquet-thrift/PageEncodingStats.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/PageEncodingStats.js +98 -88
- package/dist/parquetjs/parquet-thrift/PageHeader.d.ts +5 -5
- package/dist/parquetjs/parquet-thrift/PageHeader.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/PageHeader.js +185 -175
- package/dist/parquetjs/parquet-thrift/PageLocation.js +108 -96
- package/dist/parquetjs/parquet-thrift/PageType.js +13 -8
- package/dist/parquetjs/parquet-thrift/RowGroup.d.ts +2 -2
- package/dist/parquetjs/parquet-thrift/RowGroup.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/RowGroup.js +145 -133
- package/dist/parquetjs/parquet-thrift/SchemaElement.d.ts +4 -4
- package/dist/parquetjs/parquet-thrift/SchemaElement.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/SchemaElement.js +211 -205
- package/dist/parquetjs/parquet-thrift/SortingColumn.js +98 -88
- package/dist/parquetjs/parquet-thrift/Statistics.js +143 -137
- package/dist/parquetjs/parquet-thrift/StringType.js +31 -27
- package/dist/parquetjs/parquet-thrift/TimeType.d.ts +1 -1
- package/dist/parquetjs/parquet-thrift/TimeType.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/TimeType.js +76 -69
- package/dist/parquetjs/parquet-thrift/TimeUnit.d.ts +2 -2
- package/dist/parquetjs/parquet-thrift/TimeUnit.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/TimeUnit.js +94 -91
- package/dist/parquetjs/parquet-thrift/TimestampType.d.ts +1 -1
- package/dist/parquetjs/parquet-thrift/TimestampType.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/TimestampType.js +76 -69
- package/dist/parquetjs/parquet-thrift/Type.js +17 -12
- package/dist/parquetjs/parquet-thrift/TypeDefinedOrder.js +31 -27
- package/dist/parquetjs/parquet-thrift/UUIDType.js +31 -27
- package/dist/parquetjs/parquet-thrift/index.d.ts +44 -44
- package/dist/parquetjs/parquet-thrift/index.d.ts.map +1 -1
- package/dist/parquetjs/parquet-thrift/index.js +6 -1
- package/dist/parquetjs/parser/decoders.d.ts +3 -3
- package/dist/parquetjs/parser/decoders.d.ts.map +1 -1
- package/dist/parquetjs/parser/decoders.js +306 -242
- package/dist/parquetjs/parser/parquet-reader.d.ts +3 -3
- package/dist/parquetjs/parser/parquet-reader.d.ts.map +1 -1
- package/dist/parquetjs/parser/parquet-reader.js +179 -157
- package/dist/parquetjs/schema/declare.d.ts +1 -1
- package/dist/parquetjs/schema/declare.d.ts.map +1 -1
- package/dist/parquetjs/schema/declare.js +6 -9
- package/dist/parquetjs/schema/schema.d.ts +1 -1
- package/dist/parquetjs/schema/schema.d.ts.map +1 -1
- package/dist/parquetjs/schema/schema.js +139 -120
- package/dist/parquetjs/schema/shred.d.ts +2 -2
- package/dist/parquetjs/schema/shred.d.ts.map +1 -1
- package/dist/parquetjs/schema/shred.js +301 -204
- package/dist/parquetjs/schema/types.d.ts +1 -1
- package/dist/parquetjs/schema/types.d.ts.map +1 -1
- package/dist/parquetjs/schema/types.js +328 -314
- package/dist/parquetjs/utils/file-utils.js +24 -23
- package/dist/parquetjs/utils/read-utils.d.ts +1 -1
- package/dist/parquetjs/utils/read-utils.d.ts.map +1 -1
- package/dist/parquetjs/utils/read-utils.js +79 -69
- package/dist/polyfills/buffer/buffer-polyfill.browser.js +8 -3
- package/dist/polyfills/buffer/buffer-polyfill.node.js +13 -8
- package/dist/polyfills/buffer/buffer.js +1750 -1367
- package/dist/polyfills/buffer/index.d.ts +3 -3
- package/dist/polyfills/buffer/index.d.ts.map +1 -1
- package/dist/polyfills/buffer/index.js +5 -1
- package/dist/polyfills/buffer/install-buffer-polyfill.js +2 -1
- package/dist/polyfills/util.js +4 -1
- package/dist/workers/parquet-worker.js +3 -1
- package/package.json +15 -13
- package/src/index.ts +1 -1
- package/src/lib/parsers/parse-parquet-to-columns.ts +1 -1
- package/src/lib/parsers/parse-parquet.ts +1 -1
- package/src/parquetjs/encoder/parquet-encoder.ts +2 -2
- package/src/parquetjs/parser/decoders.ts +2 -2
- package/src/parquetjs/parser/parquet-reader.ts +1 -1
- package/src/parquetjs/schema/schema.ts +1 -1
- package/src/parquetjs/utils/read-utils.ts +2 -2
- package/dist/index.js.map +0 -1
- package/dist/lib/arrow/convert-columns-to-row-group.js.map +0 -1
- package/dist/lib/arrow/convert-row-group-to-columns.js.map +0 -1
- package/dist/lib/arrow/convert-schema-from-parquet.js.map +0 -1
- package/dist/lib/arrow/convert-schema-to-parquet.js.map +0 -1
- package/dist/lib/constants.js.map +0 -1
- package/dist/lib/parsers/get-parquet-schema.js.map +0 -1
- package/dist/lib/parsers/parse-geoparquet.js.map +0 -1
- package/dist/lib/parsers/parse-parquet-to-columns.js.map +0 -1
- package/dist/lib/parsers/parse-parquet.js.map +0 -1
- package/dist/lib/wasm/encode-parquet-wasm.js.map +0 -1
- package/dist/lib/wasm/load-wasm.js.map +0 -1
- package/dist/lib/wasm/parse-parquet-wasm.js.map +0 -1
- package/dist/lib/wip/convert-schema-deep.java.disabled +0 -910
- package/dist/lib/wip/convert-schema-deep.rs.disabled +0 -976
- package/dist/parquet-loader.js.map +0 -1
- package/dist/parquet-wasm-loader.js.map +0 -1
- package/dist/parquet-wasm-writer.js.map +0 -1
- package/dist/parquet-writer.js.map +0 -1
- package/dist/parquetjs/LICENSE +0 -20
- package/dist/parquetjs/codecs/declare.js.map +0 -1
- package/dist/parquetjs/codecs/dictionary.js.map +0 -1
- package/dist/parquetjs/codecs/index.js.map +0 -1
- package/dist/parquetjs/codecs/plain.js.map +0 -1
- package/dist/parquetjs/codecs/rle.js.map +0 -1
- package/dist/parquetjs/compression.js.map +0 -1
- package/dist/parquetjs/encoder/parquet-encoder.js.map +0 -1
- package/dist/parquetjs/modules.d.ts +0 -21
- package/dist/parquetjs/parquet-thrift/BoundaryOrder.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/BsonType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/ColumnChunk.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/ColumnIndex.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/ColumnMetaData.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/ColumnOrder.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/CompressionCodec.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/ConvertedType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/DataPageHeader.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/DataPageHeaderV2.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/DateType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/DecimalType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/DictionaryPageHeader.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/Encoding.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/EnumType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/FieldRepetitionType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/FileMetaData.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/IndexPageHeader.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/IntType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/JsonType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/KeyValue.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/ListType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/LogicalType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/MapType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/MicroSeconds.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/MilliSeconds.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/NullType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/OffsetIndex.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/PageEncodingStats.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/PageHeader.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/PageLocation.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/PageType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/RowGroup.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/SchemaElement.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/SortingColumn.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/Statistics.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/StringType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/TimeType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/TimeUnit.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/TimestampType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/Type.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/TypeDefinedOrder.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/UUIDType.js.map +0 -1
- package/dist/parquetjs/parquet-thrift/index.js.map +0 -1
- package/dist/parquetjs/parser/decoders.js.map +0 -1
- package/dist/parquetjs/parser/parquet-reader.js.map +0 -1
- package/dist/parquetjs/schema/declare.js.map +0 -1
- package/dist/parquetjs/schema/schema.js.map +0 -1
- package/dist/parquetjs/schema/shred.js.map +0 -1
- package/dist/parquetjs/schema/types.js.map +0 -1
- package/dist/parquetjs/utils/file-utils.js.map +0 -1
- package/dist/parquetjs/utils/read-utils.js.map +0 -1
- package/dist/polyfills/buffer/buffer-polyfill.browser.js.map +0 -1
- package/dist/polyfills/buffer/buffer-polyfill.node.js.map +0 -1
- package/dist/polyfills/buffer/buffer.js.map +0 -1
- package/dist/polyfills/buffer/index.js.map +0 -1
- package/dist/polyfills/buffer/install-buffer-polyfill.js.map +0 -1
- package/dist/polyfills/util.js.map +0 -1
- package/dist/workers/parquet-worker.js.map +0 -1
|
@@ -1,31 +1,35 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/*
|
|
4
|
+
* Autogenerated by @creditkarma/thrift-typescript v3.7.2
|
|
5
|
+
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
6
|
+
*/
|
|
1
7
|
import * as thrift from 'thrift';
|
|
2
8
|
export class MapType {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
constructor() { }
|
|
10
|
+
write(output) {
|
|
11
|
+
output.writeStructBegin('MapType');
|
|
12
|
+
output.writeFieldStop();
|
|
13
|
+
output.writeStructEnd();
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
static read(input) {
|
|
17
|
+
input.readStructBegin();
|
|
18
|
+
while (true) {
|
|
19
|
+
const ret = input.readFieldBegin();
|
|
20
|
+
const fieldType = ret.ftype;
|
|
21
|
+
const fieldId = ret.fid;
|
|
22
|
+
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
23
|
+
break;
|
|
24
|
+
}
|
|
25
|
+
switch (fieldId) {
|
|
26
|
+
default: {
|
|
27
|
+
input.skip(fieldType);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
input.readFieldEnd();
|
|
31
|
+
}
|
|
32
|
+
input.readStructEnd();
|
|
33
|
+
return new MapType();
|
|
26
34
|
}
|
|
27
|
-
input.readStructEnd();
|
|
28
|
-
return new MapType();
|
|
29
|
-
}
|
|
30
35
|
}
|
|
31
|
-
//# sourceMappingURL=MapType.js.map
|
|
@@ -1,31 +1,35 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/*
|
|
4
|
+
* Autogenerated by @creditkarma/thrift-typescript v3.7.2
|
|
5
|
+
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
6
|
+
*/
|
|
1
7
|
import * as thrift from 'thrift';
|
|
2
8
|
export class MicroSeconds {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
constructor() { }
|
|
10
|
+
write(output) {
|
|
11
|
+
output.writeStructBegin('MicroSeconds');
|
|
12
|
+
output.writeFieldStop();
|
|
13
|
+
output.writeStructEnd();
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
static read(input) {
|
|
17
|
+
input.readStructBegin();
|
|
18
|
+
while (true) {
|
|
19
|
+
const ret = input.readFieldBegin();
|
|
20
|
+
const fieldType = ret.ftype;
|
|
21
|
+
const fieldId = ret.fid;
|
|
22
|
+
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
23
|
+
break;
|
|
24
|
+
}
|
|
25
|
+
switch (fieldId) {
|
|
26
|
+
default: {
|
|
27
|
+
input.skip(fieldType);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
input.readFieldEnd();
|
|
31
|
+
}
|
|
32
|
+
input.readStructEnd();
|
|
33
|
+
return new MicroSeconds();
|
|
26
34
|
}
|
|
27
|
-
input.readStructEnd();
|
|
28
|
-
return new MicroSeconds();
|
|
29
|
-
}
|
|
30
35
|
}
|
|
31
|
-
//# sourceMappingURL=MicroSeconds.js.map
|
|
@@ -1,31 +1,35 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/*
|
|
4
|
+
* Autogenerated by @creditkarma/thrift-typescript v3.7.2
|
|
5
|
+
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
6
|
+
*/
|
|
1
7
|
import * as thrift from 'thrift';
|
|
2
8
|
export class MilliSeconds {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
constructor() { }
|
|
10
|
+
write(output) {
|
|
11
|
+
output.writeStructBegin('MilliSeconds');
|
|
12
|
+
output.writeFieldStop();
|
|
13
|
+
output.writeStructEnd();
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
static read(input) {
|
|
17
|
+
input.readStructBegin();
|
|
18
|
+
while (true) {
|
|
19
|
+
const ret = input.readFieldBegin();
|
|
20
|
+
const fieldType = ret.ftype;
|
|
21
|
+
const fieldId = ret.fid;
|
|
22
|
+
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
23
|
+
break;
|
|
24
|
+
}
|
|
25
|
+
switch (fieldId) {
|
|
26
|
+
default: {
|
|
27
|
+
input.skip(fieldType);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
input.readFieldEnd();
|
|
31
|
+
}
|
|
32
|
+
input.readStructEnd();
|
|
33
|
+
return new MilliSeconds();
|
|
26
34
|
}
|
|
27
|
-
input.readStructEnd();
|
|
28
|
-
return new MilliSeconds();
|
|
29
|
-
}
|
|
30
35
|
}
|
|
31
|
-
//# sourceMappingURL=MilliSeconds.js.map
|
|
@@ -1,31 +1,35 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/*
|
|
4
|
+
* Autogenerated by @creditkarma/thrift-typescript v3.7.2
|
|
5
|
+
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
6
|
+
*/
|
|
1
7
|
import * as thrift from 'thrift';
|
|
2
8
|
export class NullType {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
constructor() { }
|
|
10
|
+
write(output) {
|
|
11
|
+
output.writeStructBegin('NullType');
|
|
12
|
+
output.writeFieldStop();
|
|
13
|
+
output.writeStructEnd();
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
static read(input) {
|
|
17
|
+
input.readStructBegin();
|
|
18
|
+
while (true) {
|
|
19
|
+
const ret = input.readFieldBegin();
|
|
20
|
+
const fieldType = ret.ftype;
|
|
21
|
+
const fieldId = ret.fid;
|
|
22
|
+
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
23
|
+
break;
|
|
24
|
+
}
|
|
25
|
+
switch (fieldId) {
|
|
26
|
+
default: {
|
|
27
|
+
input.skip(fieldType);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
input.readFieldEnd();
|
|
31
|
+
}
|
|
32
|
+
input.readStructEnd();
|
|
33
|
+
return new NullType();
|
|
26
34
|
}
|
|
27
|
-
input.readStructEnd();
|
|
28
|
-
return new NullType();
|
|
29
|
-
}
|
|
30
35
|
}
|
|
31
|
-
//# sourceMappingURL=NullType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OffsetIndex.d.ts","sourceRoot":"","sources":["../../../src/parquetjs/parquet-thrift/OffsetIndex.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAC;AACjC,OAAO,KAAK,YAAY,
|
|
1
|
+
{"version":3,"file":"OffsetIndex.d.ts","sourceRoot":"","sources":["../../../src/parquetjs/parquet-thrift/OffsetIndex.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAC;AACjC,OAAO,KAAK,YAAY,0BAAuB;AAC/C,MAAM,WAAW,gBAAgB;IAC/B,cAAc,EAAE,KAAK,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;CAClD;AACD,qBAAa,WAAW;IACf,cAAc,EAAE,KAAK,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;gBAC5C,IAAI,EAAE,gBAAgB;IAU3B,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC,SAAS,GAAG,IAAI;WAe9B,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,SAAS,GAAG,WAAW;CA2CzD"}
|
|
@@ -1,68 +1,74 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/*
|
|
4
|
+
* Autogenerated by @creditkarma/thrift-typescript v3.7.2
|
|
5
|
+
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
6
|
+
*/
|
|
1
7
|
import * as thrift from 'thrift';
|
|
2
8
|
import * as PageLocation from "./PageLocation.js";
|
|
3
9
|
export class OffsetIndex {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
+
constructor(args) {
|
|
11
|
+
if (args != null && args.page_locations != null) {
|
|
12
|
+
this.page_locations = args.page_locations;
|
|
13
|
+
}
|
|
14
|
+
else {
|
|
15
|
+
throw new thrift.Thrift.TProtocolException(thrift.Thrift.TProtocolExceptionType.UNKNOWN, 'Required field[page_locations] is unset!');
|
|
16
|
+
}
|
|
10
17
|
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
write(output) {
|
|
19
|
+
output.writeStructBegin('OffsetIndex');
|
|
20
|
+
if (this.page_locations != null) {
|
|
21
|
+
output.writeFieldBegin('page_locations', thrift.Thrift.Type.LIST, 1);
|
|
22
|
+
output.writeListBegin(thrift.Thrift.Type.STRUCT, this.page_locations.length);
|
|
23
|
+
this.page_locations.forEach((value_1) => {
|
|
24
|
+
value_1.write(output);
|
|
25
|
+
});
|
|
26
|
+
output.writeListEnd();
|
|
27
|
+
output.writeFieldEnd();
|
|
28
|
+
}
|
|
29
|
+
output.writeFieldStop();
|
|
30
|
+
output.writeStructEnd();
|
|
31
|
+
return;
|
|
22
32
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
const fieldType = ret.ftype;
|
|
33
|
-
const fieldId = ret.fid;
|
|
34
|
-
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
35
|
-
break;
|
|
36
|
-
}
|
|
37
|
-
switch (fieldId) {
|
|
38
|
-
case 1:
|
|
39
|
-
if (fieldType === thrift.Thrift.Type.LIST) {
|
|
40
|
-
const value_2 = new Array();
|
|
41
|
-
const metadata_1 = input.readListBegin();
|
|
42
|
-
const size_1 = metadata_1.size;
|
|
43
|
-
for (let i_1 = 0; i_1 < size_1; i_1++) {
|
|
44
|
-
const value_3 = PageLocation.PageLocation.read(input);
|
|
45
|
-
value_2.push(value_3);
|
|
33
|
+
static read(input) {
|
|
34
|
+
input.readStructBegin();
|
|
35
|
+
let _args = {};
|
|
36
|
+
while (true) {
|
|
37
|
+
const ret = input.readFieldBegin();
|
|
38
|
+
const fieldType = ret.ftype;
|
|
39
|
+
const fieldId = ret.fid;
|
|
40
|
+
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
41
|
+
break;
|
|
46
42
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
43
|
+
switch (fieldId) {
|
|
44
|
+
case 1:
|
|
45
|
+
if (fieldType === thrift.Thrift.Type.LIST) {
|
|
46
|
+
const value_2 = new Array();
|
|
47
|
+
const metadata_1 = input.readListBegin();
|
|
48
|
+
const size_1 = metadata_1.size;
|
|
49
|
+
for (let i_1 = 0; i_1 < size_1; i_1++) {
|
|
50
|
+
const value_3 = PageLocation.PageLocation.read(input);
|
|
51
|
+
value_2.push(value_3);
|
|
52
|
+
}
|
|
53
|
+
input.readListEnd();
|
|
54
|
+
_args.page_locations = value_2;
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
input.skip(fieldType);
|
|
58
|
+
}
|
|
59
|
+
break;
|
|
60
|
+
default: {
|
|
61
|
+
input.skip(fieldType);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
input.readFieldEnd();
|
|
65
|
+
}
|
|
66
|
+
input.readStructEnd();
|
|
67
|
+
if (_args.page_locations !== undefined) {
|
|
68
|
+
return new OffsetIndex(_args);
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
throw new thrift.Thrift.TProtocolException(thrift.Thrift.TProtocolExceptionType.UNKNOWN, 'Unable to read OffsetIndex from input');
|
|
72
|
+
}
|
|
65
73
|
}
|
|
66
|
-
}
|
|
67
74
|
}
|
|
68
|
-
//# sourceMappingURL=OffsetIndex.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as thrift from 'thrift';
|
|
2
|
-
import * as Encoding from
|
|
3
|
-
import * as PageType from
|
|
2
|
+
import * as Encoding from "./Encoding.js";
|
|
3
|
+
import * as PageType from "./PageType.js";
|
|
4
4
|
export interface IPageEncodingStatsArgs {
|
|
5
5
|
page_type: PageType.PageType;
|
|
6
6
|
encoding: Encoding.Encoding;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PageEncodingStats.d.ts","sourceRoot":"","sources":["../../../src/parquetjs/parquet-thrift/PageEncodingStats.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAC;AACjC,OAAO,KAAK,QAAQ,
|
|
1
|
+
{"version":3,"file":"PageEncodingStats.d.ts","sourceRoot":"","sources":["../../../src/parquetjs/parquet-thrift/PageEncodingStats.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAC;AACjC,OAAO,KAAK,QAAQ,sBAAmB;AACvC,OAAO,KAAK,QAAQ,sBAAmB;AACvC,MAAM,WAAW,sBAAsB;IACrC,SAAS,EAAE,QAAQ,CAAC,QAAQ,CAAC;IAC7B,QAAQ,EAAE,QAAQ,CAAC,QAAQ,CAAC;IAC5B,KAAK,EAAE,MAAM,CAAC;CACf;AACD,qBAAa,iBAAiB;IACrB,SAAS,EAAE,QAAQ,CAAC,QAAQ,CAAC;IAC7B,QAAQ,EAAE,QAAQ,CAAC,QAAQ,CAAC;IAC5B,KAAK,EAAE,MAAM,CAAC;gBACT,IAAI,EAAE,sBAAsB;IA0BjC,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC,SAAS,GAAG,IAAI;WAqB9B,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,SAAS,GAAG,iBAAiB;CAuD/D"}
|
|
@@ -1,94 +1,104 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/*
|
|
4
|
+
* Autogenerated by @creditkarma/thrift-typescript v3.7.2
|
|
5
|
+
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
6
|
+
*/
|
|
1
7
|
import * as thrift from 'thrift';
|
|
2
8
|
export class PageEncodingStats {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
constructor(args) {
|
|
10
|
+
if (args != null && args.page_type != null) {
|
|
11
|
+
this.page_type = args.page_type;
|
|
12
|
+
}
|
|
13
|
+
else {
|
|
14
|
+
throw new thrift.Thrift.TProtocolException(thrift.Thrift.TProtocolExceptionType.UNKNOWN, 'Required field[page_type] is unset!');
|
|
15
|
+
}
|
|
16
|
+
if (args != null && args.encoding != null) {
|
|
17
|
+
this.encoding = args.encoding;
|
|
18
|
+
}
|
|
19
|
+
else {
|
|
20
|
+
throw new thrift.Thrift.TProtocolException(thrift.Thrift.TProtocolExceptionType.UNKNOWN, 'Required field[encoding] is unset!');
|
|
21
|
+
}
|
|
22
|
+
if (args != null && args.count != null) {
|
|
23
|
+
this.count = args.count;
|
|
24
|
+
}
|
|
25
|
+
else {
|
|
26
|
+
throw new thrift.Thrift.TProtocolException(thrift.Thrift.TProtocolExceptionType.UNKNOWN, 'Required field[count] is unset!');
|
|
27
|
+
}
|
|
11
28
|
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
29
|
+
write(output) {
|
|
30
|
+
output.writeStructBegin('PageEncodingStats');
|
|
31
|
+
if (this.page_type != null) {
|
|
32
|
+
output.writeFieldBegin('page_type', thrift.Thrift.Type.I32, 1);
|
|
33
|
+
output.writeI32(this.page_type);
|
|
34
|
+
output.writeFieldEnd();
|
|
35
|
+
}
|
|
36
|
+
if (this.encoding != null) {
|
|
37
|
+
output.writeFieldBegin('encoding', thrift.Thrift.Type.I32, 2);
|
|
38
|
+
output.writeI32(this.encoding);
|
|
39
|
+
output.writeFieldEnd();
|
|
40
|
+
}
|
|
41
|
+
if (this.count != null) {
|
|
42
|
+
output.writeFieldBegin('count', thrift.Thrift.Type.I32, 3);
|
|
43
|
+
output.writeI32(this.count);
|
|
44
|
+
output.writeFieldEnd();
|
|
45
|
+
}
|
|
46
|
+
output.writeFieldStop();
|
|
47
|
+
output.writeStructEnd();
|
|
48
|
+
return;
|
|
16
49
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
50
|
+
static read(input) {
|
|
51
|
+
input.readStructBegin();
|
|
52
|
+
let _args = {};
|
|
53
|
+
while (true) {
|
|
54
|
+
const ret = input.readFieldBegin();
|
|
55
|
+
const fieldType = ret.ftype;
|
|
56
|
+
const fieldId = ret.fid;
|
|
57
|
+
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
58
|
+
break;
|
|
59
|
+
}
|
|
60
|
+
switch (fieldId) {
|
|
61
|
+
case 1:
|
|
62
|
+
if (fieldType === thrift.Thrift.Type.I32) {
|
|
63
|
+
const value_1 = input.readI32();
|
|
64
|
+
_args.page_type = value_1;
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
input.skip(fieldType);
|
|
68
|
+
}
|
|
69
|
+
break;
|
|
70
|
+
case 2:
|
|
71
|
+
if (fieldType === thrift.Thrift.Type.I32) {
|
|
72
|
+
const value_2 = input.readI32();
|
|
73
|
+
_args.encoding = value_2;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
input.skip(fieldType);
|
|
77
|
+
}
|
|
78
|
+
break;
|
|
79
|
+
case 3:
|
|
80
|
+
if (fieldType === thrift.Thrift.Type.I32) {
|
|
81
|
+
const value_3 = input.readI32();
|
|
82
|
+
_args.count = value_3;
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
input.skip(fieldType);
|
|
86
|
+
}
|
|
87
|
+
break;
|
|
88
|
+
default: {
|
|
89
|
+
input.skip(fieldType);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
input.readFieldEnd();
|
|
93
|
+
}
|
|
94
|
+
input.readStructEnd();
|
|
95
|
+
if (_args.page_type !== undefined &&
|
|
96
|
+
_args.encoding !== undefined &&
|
|
97
|
+
_args.count !== undefined) {
|
|
98
|
+
return new PageEncodingStats(_args);
|
|
99
|
+
}
|
|
100
|
+
else {
|
|
101
|
+
throw new thrift.Thrift.TProtocolException(thrift.Thrift.TProtocolExceptionType.UNKNOWN, 'Unable to read PageEncodingStats from input');
|
|
102
|
+
}
|
|
21
103
|
}
|
|
22
|
-
}
|
|
23
|
-
write(output) {
|
|
24
|
-
output.writeStructBegin('PageEncodingStats');
|
|
25
|
-
if (this.page_type != null) {
|
|
26
|
-
output.writeFieldBegin('page_type', thrift.Thrift.Type.I32, 1);
|
|
27
|
-
output.writeI32(this.page_type);
|
|
28
|
-
output.writeFieldEnd();
|
|
29
|
-
}
|
|
30
|
-
if (this.encoding != null) {
|
|
31
|
-
output.writeFieldBegin('encoding', thrift.Thrift.Type.I32, 2);
|
|
32
|
-
output.writeI32(this.encoding);
|
|
33
|
-
output.writeFieldEnd();
|
|
34
|
-
}
|
|
35
|
-
if (this.count != null) {
|
|
36
|
-
output.writeFieldBegin('count', thrift.Thrift.Type.I32, 3);
|
|
37
|
-
output.writeI32(this.count);
|
|
38
|
-
output.writeFieldEnd();
|
|
39
|
-
}
|
|
40
|
-
output.writeFieldStop();
|
|
41
|
-
output.writeStructEnd();
|
|
42
|
-
return;
|
|
43
|
-
}
|
|
44
|
-
static read(input) {
|
|
45
|
-
input.readStructBegin();
|
|
46
|
-
let _args = {};
|
|
47
|
-
while (true) {
|
|
48
|
-
const ret = input.readFieldBegin();
|
|
49
|
-
const fieldType = ret.ftype;
|
|
50
|
-
const fieldId = ret.fid;
|
|
51
|
-
if (fieldType === thrift.Thrift.Type.STOP) {
|
|
52
|
-
break;
|
|
53
|
-
}
|
|
54
|
-
switch (fieldId) {
|
|
55
|
-
case 1:
|
|
56
|
-
if (fieldType === thrift.Thrift.Type.I32) {
|
|
57
|
-
const value_1 = input.readI32();
|
|
58
|
-
_args.page_type = value_1;
|
|
59
|
-
} else {
|
|
60
|
-
input.skip(fieldType);
|
|
61
|
-
}
|
|
62
|
-
break;
|
|
63
|
-
case 2:
|
|
64
|
-
if (fieldType === thrift.Thrift.Type.I32) {
|
|
65
|
-
const value_2 = input.readI32();
|
|
66
|
-
_args.encoding = value_2;
|
|
67
|
-
} else {
|
|
68
|
-
input.skip(fieldType);
|
|
69
|
-
}
|
|
70
|
-
break;
|
|
71
|
-
case 3:
|
|
72
|
-
if (fieldType === thrift.Thrift.Type.I32) {
|
|
73
|
-
const value_3 = input.readI32();
|
|
74
|
-
_args.count = value_3;
|
|
75
|
-
} else {
|
|
76
|
-
input.skip(fieldType);
|
|
77
|
-
}
|
|
78
|
-
break;
|
|
79
|
-
default:
|
|
80
|
-
{
|
|
81
|
-
input.skip(fieldType);
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
input.readFieldEnd();
|
|
85
|
-
}
|
|
86
|
-
input.readStructEnd();
|
|
87
|
-
if (_args.page_type !== undefined && _args.encoding !== undefined && _args.count !== undefined) {
|
|
88
|
-
return new PageEncodingStats(_args);
|
|
89
|
-
} else {
|
|
90
|
-
throw new thrift.Thrift.TProtocolException(thrift.Thrift.TProtocolExceptionType.UNKNOWN, 'Unable to read PageEncodingStats from input');
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
104
|
}
|
|
94
|
-
//# sourceMappingURL=PageEncodingStats.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as thrift from 'thrift';
|
|
2
|
-
import * as DataPageHeader from
|
|
3
|
-
import * as DataPageHeaderV2 from
|
|
4
|
-
import * as DictionaryPageHeader from
|
|
5
|
-
import * as IndexPageHeader from
|
|
6
|
-
import * as PageType from
|
|
2
|
+
import * as DataPageHeader from "./DataPageHeader.js";
|
|
3
|
+
import * as DataPageHeaderV2 from "./DataPageHeaderV2.js";
|
|
4
|
+
import * as DictionaryPageHeader from "./DictionaryPageHeader.js";
|
|
5
|
+
import * as IndexPageHeader from "./IndexPageHeader.js";
|
|
6
|
+
import * as PageType from "./PageType.js";
|
|
7
7
|
export interface IPageHeaderArgs {
|
|
8
8
|
type: PageType.PageType;
|
|
9
9
|
uncompressed_page_size: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PageHeader.d.ts","sourceRoot":"","sources":["../../../src/parquetjs/parquet-thrift/PageHeader.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAC;AACjC,OAAO,KAAK,cAAc,
|
|
1
|
+
{"version":3,"file":"PageHeader.d.ts","sourceRoot":"","sources":["../../../src/parquetjs/parquet-thrift/PageHeader.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAC;AACjC,OAAO,KAAK,cAAc,4BAAyB;AACnD,OAAO,KAAK,gBAAgB,8BAA2B;AACvD,OAAO,KAAK,oBAAoB,kCAA+B;AAC/D,OAAO,KAAK,eAAe,6BAA0B;AACrD,OAAO,KAAK,QAAQ,sBAAmB;AACvC,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,QAAQ,CAAC,QAAQ,CAAC;IACxB,sBAAsB,EAAE,MAAM,CAAC;IAC/B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,gBAAgB,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC;IACjD,iBAAiB,CAAC,EAAE,eAAe,CAAC,eAAe,CAAC;IACpD,sBAAsB,CAAC,EAAE,oBAAoB,CAAC,oBAAoB,CAAC;IACnE,mBAAmB,CAAC,EAAE,gBAAgB,CAAC,gBAAgB,CAAC;CACzD;AACD,qBAAa,UAAU;IACd,IAAI,EAAE,QAAQ,CAAC,QAAQ,CAAC;IACxB,sBAAsB,EAAE,MAAM,CAAC;IAC/B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,gBAAgB,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC;IACjD,iBAAiB,CAAC,EAAE,eAAe,CAAC,eAAe,CAAC;IACpD,sBAAsB,CAAC,EAAE,oBAAoB,CAAC,oBAAoB,CAAC;IACnE,mBAAmB,CAAC,EAAE,gBAAgB,CAAC,gBAAgB,CAAC;gBACnD,IAAI,EAAE,eAAe;IAyC1B,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC,SAAS,GAAG,IAAI;WA8C9B,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,SAAS,GAAG,UAAU;CAmGxD"}
|