@loaders.gl/parquet 3.1.0-alpha.4 → 3.1.0-beta.3
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/bundle.d.ts +2 -0
- package/dist/bundle.d.ts.map +1 -0
- package/dist/bundle.js +5 -0
- package/dist/constants.d.ts +15 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +18 -0
- package/dist/dist.min.js +27 -13
- package/dist/dist.min.js.map +7 -1
- package/dist/es5/bundle.js +1 -1
- package/dist/es5/bundle.js.map +1 -1
- package/dist/es5/constants.js +5 -5
- package/dist/es5/constants.js.map +1 -1
- package/dist/es5/index.js +16 -45
- package/dist/es5/index.js.map +1 -1
- package/dist/es5/lib/convert-schema.js +13 -13
- package/dist/es5/lib/convert-schema.js.map +1 -1
- package/dist/es5/lib/parse-parquet.js +19 -154
- package/dist/es5/lib/parse-parquet.js.map +1 -1
- package/dist/es5/lib/read-array-buffer.js +6 -43
- package/dist/es5/lib/read-array-buffer.js.map +1 -1
- package/dist/es5/parquet-loader.js +4 -4
- package/dist/es5/parquet-loader.js.map +1 -1
- package/dist/es5/parquet-writer.js +4 -4
- package/dist/es5/parquet-writer.js.map +1 -1
- package/dist/es5/parquetjs/codecs/dictionary.js +2 -10
- package/dist/es5/parquetjs/codecs/dictionary.js.map +1 -1
- package/dist/es5/parquetjs/codecs/index.js +4 -6
- package/dist/es5/parquetjs/codecs/index.js.map +1 -1
- package/dist/es5/parquetjs/codecs/plain.js +41 -43
- package/dist/es5/parquetjs/codecs/plain.js.map +1 -1
- package/dist/es5/parquetjs/codecs/rle.js +25 -35
- package/dist/es5/parquetjs/codecs/rle.js.map +1 -1
- package/dist/es5/parquetjs/compression.js +28 -122
- package/dist/es5/parquetjs/compression.js.map +1 -1
- package/dist/es5/parquetjs/encoder/writer.js +301 -737
- package/dist/es5/parquetjs/encoder/writer.js.map +1 -1
- package/dist/es5/parquetjs/file.js +15 -15
- package/dist/es5/parquetjs/file.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/BoundaryOrder.js +1 -1
- package/dist/es5/parquetjs/parquet-thrift/BsonType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/BsonType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/ColumnChunk.js +141 -152
- package/dist/es5/parquetjs/parquet-thrift/ColumnChunk.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/ColumnIndex.js +147 -160
- package/dist/es5/parquetjs/parquet-thrift/ColumnIndex.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/ColumnMetaData.js +248 -259
- package/dist/es5/parquetjs/parquet-thrift/ColumnMetaData.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/ColumnOrder.js +67 -79
- package/dist/es5/parquetjs/parquet-thrift/ColumnOrder.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/CompressionCodec.js +1 -1
- package/dist/es5/parquetjs/parquet-thrift/ConvertedType.js +1 -1
- package/dist/es5/parquetjs/parquet-thrift/DataPageHeader.js +113 -124
- package/dist/es5/parquetjs/parquet-thrift/DataPageHeader.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/DataPageHeaderV2.js +158 -169
- package/dist/es5/parquetjs/parquet-thrift/DataPageHeaderV2.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/DateType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/DateType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/DecimalType.js +68 -79
- package/dist/es5/parquetjs/parquet-thrift/DecimalType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/DictionaryPageHeader.js +83 -94
- package/dist/es5/parquetjs/parquet-thrift/DictionaryPageHeader.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/Encoding.js +1 -1
- package/dist/es5/parquetjs/parquet-thrift/EnumType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/EnumType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/FieldRepetitionType.js +1 -1
- package/dist/es5/parquetjs/parquet-thrift/FileMetaData.js +170 -182
- package/dist/es5/parquetjs/parquet-thrift/FileMetaData.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/IndexPageHeader.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/IndexPageHeader.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/IntType.js +68 -79
- package/dist/es5/parquetjs/parquet-thrift/IntType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/JsonType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/JsonType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/KeyValue.js +68 -79
- package/dist/es5/parquetjs/parquet-thrift/KeyValue.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/ListType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/ListType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/LogicalType.js +319 -343
- package/dist/es5/parquetjs/parquet-thrift/LogicalType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/MapType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/MapType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/MicroSeconds.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/MicroSeconds.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/MilliSeconds.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/MilliSeconds.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/NullType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/NullType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/OffsetIndex.js +64 -75
- package/dist/es5/parquetjs/parquet-thrift/OffsetIndex.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/PageEncodingStats.js +83 -94
- package/dist/es5/parquetjs/parquet-thrift/PageEncodingStats.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/PageHeader.js +158 -169
- package/dist/es5/parquetjs/parquet-thrift/PageHeader.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/PageLocation.js +83 -94
- package/dist/es5/parquetjs/parquet-thrift/PageLocation.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/PageType.js +1 -1
- package/dist/es5/parquetjs/parquet-thrift/RowGroup.js +113 -124
- package/dist/es5/parquetjs/parquet-thrift/RowGroup.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/SchemaElement.js +188 -199
- package/dist/es5/parquetjs/parquet-thrift/SchemaElement.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/SortingColumn.js +83 -94
- package/dist/es5/parquetjs/parquet-thrift/SortingColumn.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/Statistics.js +124 -135
- package/dist/es5/parquetjs/parquet-thrift/Statistics.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/StringType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/StringType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/TimeType.js +68 -79
- package/dist/es5/parquetjs/parquet-thrift/TimeType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/TimeUnit.js +88 -101
- package/dist/es5/parquetjs/parquet-thrift/TimeUnit.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/TimestampType.js +68 -79
- package/dist/es5/parquetjs/parquet-thrift/TimestampType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/Type.js +1 -1
- package/dist/es5/parquetjs/parquet-thrift/TypeDefinedOrder.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/TypeDefinedOrder.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/UUIDType.js +31 -45
- package/dist/es5/parquetjs/parquet-thrift/UUIDType.js.map +1 -1
- package/dist/es5/parquetjs/parquet-thrift/index.js +43 -43
- package/dist/es5/parquetjs/parser/decoders.js +218 -397
- package/dist/es5/parquetjs/parser/decoders.js.map +1 -1
- package/dist/es5/parquetjs/parser/parquet-cursor.js +62 -180
- package/dist/es5/parquetjs/parser/parquet-cursor.js.map +1 -1
- package/dist/es5/parquetjs/parser/parquet-envelope-reader.js +124 -408
- package/dist/es5/parquetjs/parser/parquet-envelope-reader.js.map +1 -1
- package/dist/es5/parquetjs/parser/parquet-reader.js +91 -369
- package/dist/es5/parquetjs/parser/parquet-reader.js.map +1 -1
- package/dist/es5/parquetjs/schema/declare.js +9 -11
- package/dist/es5/parquetjs/schema/declare.js.map +1 -1
- package/dist/es5/parquetjs/schema/schema.js +73 -87
- package/dist/es5/parquetjs/schema/schema.js.map +1 -1
- package/dist/es5/parquetjs/schema/shred.js +56 -96
- package/dist/es5/parquetjs/schema/shred.js.map +1 -1
- package/dist/es5/parquetjs/schema/types.js +39 -40
- package/dist/es5/parquetjs/schema/types.js.map +1 -1
- package/dist/es5/parquetjs/utils/buffer-utils.js +1 -1
- package/dist/es5/parquetjs/utils/buffer-utils.js.map +1 -1
- package/dist/es5/parquetjs/utils/file-utils.js +8 -65
- package/dist/es5/parquetjs/utils/file-utils.js.map +1 -1
- package/dist/es5/parquetjs/utils/read-utils.js +22 -50
- package/dist/es5/parquetjs/utils/read-utils.js.map +1 -1
- package/dist/esm/index.js +2 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/parquet-loader.js +1 -1
- package/dist/esm/parquet-loader.js.map +1 -1
- package/dist/esm/parquet-writer.js +1 -1
- package/dist/esm/parquet-writer.js.map +1 -1
- package/dist/esm/parquetjs/codecs/plain.js +3 -3
- package/dist/esm/parquetjs/codecs/plain.js.map +1 -1
- package/dist/esm/parquetjs/codecs/rle.js +1 -1
- package/dist/esm/parquetjs/codecs/rle.js.map +1 -1
- package/dist/esm/parquetjs/compression.js +4 -13
- package/dist/esm/parquetjs/compression.js.map +1 -1
- package/dist/esm/parquetjs/encoder/writer.js +1 -1
- package/dist/esm/parquetjs/encoder/writer.js.map +1 -1
- package/dist/esm/parquetjs/parser/decoders.js +4 -4
- package/dist/esm/parquetjs/parser/decoders.js.map +1 -1
- package/dist/esm/parquetjs/parser/parquet-envelope-reader.js +4 -13
- package/dist/esm/parquetjs/parser/parquet-envelope-reader.js.map +1 -1
- package/dist/esm/parquetjs/parser/parquet-reader.js +0 -13
- package/dist/esm/parquetjs/parser/parquet-reader.js.map +1 -1
- package/dist/esm/parquetjs/schema/schema.js +3 -3
- package/dist/esm/parquetjs/schema/schema.js.map +1 -1
- package/dist/esm/parquetjs/schema/shred.js +2 -2
- package/dist/esm/parquetjs/schema/shred.js.map +1 -1
- package/dist/esm/parquetjs/schema/types.js +20 -20
- package/dist/esm/parquetjs/schema/types.js.map +1 -1
- package/dist/esm/parquetjs/utils/file-utils.js +0 -45
- package/dist/esm/parquetjs/utils/file-utils.js.map +1 -1
- package/dist/index.d.ts +28 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +30 -0
- package/dist/lib/convert-schema.d.ts +8 -0
- package/dist/lib/convert-schema.d.ts.map +1 -0
- package/dist/lib/convert-schema.js +70 -0
- package/dist/lib/parse-parquet.d.ts +4 -0
- package/dist/lib/parse-parquet.d.ts.map +1 -0
- package/dist/lib/parse-parquet.js +28 -0
- package/dist/lib/read-array-buffer.d.ts +19 -0
- package/dist/lib/read-array-buffer.d.ts.map +1 -0
- package/dist/lib/read-array-buffer.js +29 -0
- package/dist/parquet-loader.d.ts +23 -0
- package/dist/parquet-loader.d.ts.map +1 -0
- package/dist/parquet-loader.js +27 -0
- package/dist/parquet-worker.js +27 -13
- package/dist/parquet-worker.js.map +7 -1
- package/dist/parquet-writer.d.ts +4 -0
- package/dist/parquet-writer.d.ts.map +1 -0
- package/dist/parquet-writer.js +21 -0
- package/dist/parquetjs/codecs/declare.d.ts +17 -0
- package/dist/parquetjs/codecs/declare.d.ts.map +1 -0
- package/dist/parquetjs/codecs/declare.js +2 -0
- package/dist/parquetjs/codecs/dictionary.d.ts +3 -0
- package/dist/parquetjs/codecs/dictionary.d.ts.map +1 -0
- package/dist/parquetjs/codecs/dictionary.js +14 -0
- package/dist/parquetjs/codecs/index.d.ts +5 -0
- package/dist/parquetjs/codecs/index.d.ts.map +1 -0
- package/dist/parquetjs/codecs/index.js +51 -0
- package/dist/parquetjs/codecs/plain.d.ts +6 -0
- package/dist/parquetjs/codecs/plain.d.ts.map +1 -0
- package/dist/parquetjs/codecs/plain.js +211 -0
- package/dist/parquetjs/codecs/rle.d.ts +6 -0
- package/dist/parquetjs/codecs/rle.d.ts.map +1 -0
- package/dist/parquetjs/codecs/rle.js +145 -0
- package/dist/parquetjs/compression.d.ts +23 -0
- package/dist/parquetjs/compression.d.ts.map +1 -0
- package/dist/parquetjs/compression.js +168 -0
- package/dist/parquetjs/encoder/writer.d.ts +123 -0
- package/dist/parquetjs/encoder/writer.d.ts.map +1 -0
- package/dist/parquetjs/encoder/writer.js +478 -0
- package/dist/parquetjs/file.d.ts +10 -0
- package/dist/parquetjs/file.d.ts.map +1 -0
- package/dist/parquetjs/file.js +99 -0
- package/dist/parquetjs/parquet-thrift/BoundaryOrder.d.ts +6 -0
- package/dist/parquetjs/parquet-thrift/BoundaryOrder.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/BoundaryOrder.js +15 -0
- package/dist/parquetjs/parquet-thrift/BsonType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/BsonType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/BsonType.js +58 -0
- package/dist/parquetjs/parquet-thrift/ColumnChunk.d.ts +25 -0
- package/dist/parquetjs/parquet-thrift/ColumnChunk.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/ColumnChunk.js +207 -0
- package/dist/parquetjs/parquet-thrift/ColumnIndex.d.ts +22 -0
- package/dist/parquetjs/parquet-thrift/ColumnIndex.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/ColumnIndex.js +213 -0
- package/dist/parquetjs/parquet-thrift/ColumnMetaData.d.ts +42 -0
- package/dist/parquetjs/parquet-thrift/ColumnMetaData.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/ColumnMetaData.js +398 -0
- package/dist/parquetjs/parquet-thrift/ColumnOrder.d.ts +13 -0
- package/dist/parquetjs/parquet-thrift/ColumnOrder.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/ColumnOrder.js +104 -0
- package/dist/parquetjs/parquet-thrift/CompressionCodec.d.ts +11 -0
- package/dist/parquetjs/parquet-thrift/CompressionCodec.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/CompressionCodec.js +20 -0
- package/dist/parquetjs/parquet-thrift/ConvertedType.d.ts +25 -0
- package/dist/parquetjs/parquet-thrift/ConvertedType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/ConvertedType.js +34 -0
- package/dist/parquetjs/parquet-thrift/DataPageHeader.d.ts +21 -0
- package/dist/parquetjs/parquet-thrift/DataPageHeader.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/DataPageHeader.js +166 -0
- package/dist/parquetjs/parquet-thrift/DataPageHeaderV2.d.ts +27 -0
- package/dist/parquetjs/parquet-thrift/DataPageHeaderV2.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/DataPageHeaderV2.js +226 -0
- package/dist/parquetjs/parquet-thrift/DateType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/DateType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/DateType.js +58 -0
- package/dist/parquetjs/parquet-thrift/DecimalType.d.ts +13 -0
- package/dist/parquetjs/parquet-thrift/DecimalType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/DecimalType.js +105 -0
- package/dist/parquetjs/parquet-thrift/DictionaryPageHeader.d.ts +16 -0
- package/dist/parquetjs/parquet-thrift/DictionaryPageHeader.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/DictionaryPageHeader.js +122 -0
- package/dist/parquetjs/parquet-thrift/Encoding.d.ts +11 -0
- package/dist/parquetjs/parquet-thrift/Encoding.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/Encoding.js +20 -0
- package/dist/parquetjs/parquet-thrift/EnumType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/EnumType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/EnumType.js +58 -0
- package/dist/parquetjs/parquet-thrift/FieldRepetitionType.d.ts +6 -0
- package/dist/parquetjs/parquet-thrift/FieldRepetitionType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/FieldRepetitionType.js +15 -0
- package/dist/parquetjs/parquet-thrift/FileMetaData.d.ts +28 -0
- package/dist/parquetjs/parquet-thrift/FileMetaData.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/FileMetaData.js +256 -0
- package/dist/parquetjs/parquet-thrift/IndexPageHeader.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/IndexPageHeader.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/IndexPageHeader.js +58 -0
- package/dist/parquetjs/parquet-thrift/IntType.d.ts +13 -0
- package/dist/parquetjs/parquet-thrift/IntType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/IntType.js +105 -0
- package/dist/parquetjs/parquet-thrift/JsonType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/JsonType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/JsonType.js +58 -0
- package/dist/parquetjs/parquet-thrift/KeyValue.d.ts +13 -0
- package/dist/parquetjs/parquet-thrift/KeyValue.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/KeyValue.js +102 -0
- package/dist/parquetjs/parquet-thrift/ListType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/ListType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/ListType.js +58 -0
- package/dist/parquetjs/parquet-thrift/LogicalType.d.ts +61 -0
- package/dist/parquetjs/parquet-thrift/LogicalType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/LogicalType.js +380 -0
- package/dist/parquetjs/parquet-thrift/MapType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/MapType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/MapType.js +58 -0
- package/dist/parquetjs/parquet-thrift/MicroSeconds.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/MicroSeconds.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/MicroSeconds.js +58 -0
- package/dist/parquetjs/parquet-thrift/MilliSeconds.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/MilliSeconds.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/MilliSeconds.js +58 -0
- package/dist/parquetjs/parquet-thrift/NullType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/NullType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/NullType.js +58 -0
- package/dist/parquetjs/parquet-thrift/OffsetIndex.d.ts +12 -0
- package/dist/parquetjs/parquet-thrift/OffsetIndex.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/OffsetIndex.js +97 -0
- package/dist/parquetjs/parquet-thrift/PageEncodingStats.d.ts +17 -0
- package/dist/parquetjs/parquet-thrift/PageEncodingStats.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/PageEncodingStats.js +127 -0
- package/dist/parquetjs/parquet-thrift/PageHeader.d.ts +30 -0
- package/dist/parquetjs/parquet-thrift/PageHeader.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/PageHeader.js +216 -0
- package/dist/parquetjs/parquet-thrift/PageLocation.d.ts +16 -0
- package/dist/parquetjs/parquet-thrift/PageLocation.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/PageLocation.js +141 -0
- package/dist/parquetjs/parquet-thrift/PageType.d.ts +7 -0
- package/dist/parquetjs/parquet-thrift/PageType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/PageType.js +16 -0
- package/dist/parquetjs/parquet-thrift/RowGroup.d.ts +20 -0
- package/dist/parquetjs/parquet-thrift/RowGroup.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/RowGroup.js +182 -0
- package/dist/parquetjs/parquet-thrift/SchemaElement.d.ts +33 -0
- package/dist/parquetjs/parquet-thrift/SchemaElement.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/SchemaElement.js +239 -0
- package/dist/parquetjs/parquet-thrift/SortingColumn.d.ts +15 -0
- package/dist/parquetjs/parquet-thrift/SortingColumn.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/SortingColumn.js +127 -0
- package/dist/parquetjs/parquet-thrift/Statistics.d.ts +23 -0
- package/dist/parquetjs/parquet-thrift/Statistics.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/Statistics.js +176 -0
- package/dist/parquetjs/parquet-thrift/StringType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/StringType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/StringType.js +58 -0
- package/dist/parquetjs/parquet-thrift/TimeType.d.ts +14 -0
- package/dist/parquetjs/parquet-thrift/TimeType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/TimeType.js +106 -0
- package/dist/parquetjs/parquet-thrift/TimeUnit.d.ts +17 -0
- package/dist/parquetjs/parquet-thrift/TimeUnit.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/TimeUnit.js +127 -0
- package/dist/parquetjs/parquet-thrift/TimestampType.d.ts +14 -0
- package/dist/parquetjs/parquet-thrift/TimestampType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/TimestampType.js +106 -0
- package/dist/parquetjs/parquet-thrift/Type.d.ts +11 -0
- package/dist/parquetjs/parquet-thrift/Type.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/Type.js +20 -0
- package/dist/parquetjs/parquet-thrift/TypeDefinedOrder.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/TypeDefinedOrder.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/TypeDefinedOrder.js +58 -0
- package/dist/parquetjs/parquet-thrift/UUIDType.d.ts +9 -0
- package/dist/parquetjs/parquet-thrift/UUIDType.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/UUIDType.js +58 -0
- package/dist/parquetjs/parquet-thrift/index.d.ts +44 -0
- package/dist/parquetjs/parquet-thrift/index.d.ts.map +1 -0
- package/dist/parquetjs/parquet-thrift/index.js +61 -0
- package/dist/parquetjs/parser/decoders.d.ts +34 -0
- package/dist/parquetjs/parser/decoders.d.ts.map +1 -0
- package/dist/parquetjs/parser/decoders.js +318 -0
- package/dist/parquetjs/parser/parquet-cursor.d.ts +36 -0
- package/dist/parquetjs/parser/parquet-cursor.d.ts.map +1 -0
- package/dist/parquetjs/parser/parquet-cursor.js +74 -0
- package/dist/parquetjs/parser/parquet-envelope-reader.d.ts +40 -0
- package/dist/parquetjs/parser/parquet-envelope-reader.d.ts.map +1 -0
- package/dist/parquetjs/parser/parquet-envelope-reader.js +136 -0
- package/dist/parquetjs/parser/parquet-reader.d.ts +68 -0
- package/dist/parquetjs/parser/parquet-reader.d.ts.map +1 -0
- package/dist/parquetjs/parser/parquet-reader.js +134 -0
- package/dist/parquetjs/schema/declare.d.ts +80 -0
- package/dist/parquetjs/schema/declare.d.ts.map +1 -0
- package/dist/parquetjs/schema/declare.js +10 -0
- package/dist/parquetjs/schema/schema.d.ts +26 -0
- package/dist/parquetjs/schema/schema.d.ts.map +1 -0
- package/dist/parquetjs/schema/schema.js +162 -0
- package/dist/parquetjs/schema/shred.d.ts +48 -0
- package/dist/parquetjs/schema/shred.d.ts.map +1 -0
- package/dist/parquetjs/schema/shred.js +225 -0
- package/dist/parquetjs/schema/types.d.ts +20 -0
- package/dist/parquetjs/schema/types.d.ts.map +1 -0
- package/dist/parquetjs/schema/types.js +418 -0
- package/dist/parquetjs/utils/buffer-utils.d.ts +10 -0
- package/dist/parquetjs/utils/buffer-utils.d.ts.map +1 -0
- package/dist/parquetjs/utils/buffer-utils.js +22 -0
- package/dist/parquetjs/utils/file-utils.d.ts +16 -0
- package/dist/parquetjs/utils/file-utils.d.ts.map +1 -0
- package/dist/parquetjs/utils/file-utils.js +46 -0
- package/dist/parquetjs/utils/read-utils.d.ts +25 -0
- package/dist/parquetjs/utils/read-utils.d.ts.map +1 -0
- package/dist/parquetjs/utils/read-utils.js +109 -0
- package/dist/workers/parquet-worker.d.ts +2 -0
- package/dist/workers/parquet-worker.d.ts.map +1 -0
- package/dist/workers/parquet-worker.js +5 -0
- package/package.json +8 -8
- package/src/index.ts +3 -3
- package/src/parquetjs/compression.ts +10 -10
- package/src/parquetjs/parser/decoders.ts +1 -1
- package/src/parquetjs/parser/parquet-envelope-reader.ts +0 -11
- package/src/parquetjs/parser/parquet-reader.ts +0 -16
- package/src/parquetjs/utils/file-utils.ts +0 -49
|
@@ -11,7 +11,7 @@ Object.keys(_Type).forEach(function (key) {
|
|
|
11
11
|
if (key in exports && exports[key] === _Type[key]) return;
|
|
12
12
|
Object.defineProperty(exports, key, {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function
|
|
14
|
+
get: function () {
|
|
15
15
|
return _Type[key];
|
|
16
16
|
}
|
|
17
17
|
});
|
|
@@ -24,7 +24,7 @@ Object.keys(_ConvertedType).forEach(function (key) {
|
|
|
24
24
|
if (key in exports && exports[key] === _ConvertedType[key]) return;
|
|
25
25
|
Object.defineProperty(exports, key, {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function
|
|
27
|
+
get: function () {
|
|
28
28
|
return _ConvertedType[key];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -37,7 +37,7 @@ Object.keys(_FieldRepetitionType).forEach(function (key) {
|
|
|
37
37
|
if (key in exports && exports[key] === _FieldRepetitionType[key]) return;
|
|
38
38
|
Object.defineProperty(exports, key, {
|
|
39
39
|
enumerable: true,
|
|
40
|
-
get: function
|
|
40
|
+
get: function () {
|
|
41
41
|
return _FieldRepetitionType[key];
|
|
42
42
|
}
|
|
43
43
|
});
|
|
@@ -50,7 +50,7 @@ Object.keys(_Encoding).forEach(function (key) {
|
|
|
50
50
|
if (key in exports && exports[key] === _Encoding[key]) return;
|
|
51
51
|
Object.defineProperty(exports, key, {
|
|
52
52
|
enumerable: true,
|
|
53
|
-
get: function
|
|
53
|
+
get: function () {
|
|
54
54
|
return _Encoding[key];
|
|
55
55
|
}
|
|
56
56
|
});
|
|
@@ -63,7 +63,7 @@ Object.keys(_CompressionCodec).forEach(function (key) {
|
|
|
63
63
|
if (key in exports && exports[key] === _CompressionCodec[key]) return;
|
|
64
64
|
Object.defineProperty(exports, key, {
|
|
65
65
|
enumerable: true,
|
|
66
|
-
get: function
|
|
66
|
+
get: function () {
|
|
67
67
|
return _CompressionCodec[key];
|
|
68
68
|
}
|
|
69
69
|
});
|
|
@@ -76,7 +76,7 @@ Object.keys(_PageType).forEach(function (key) {
|
|
|
76
76
|
if (key in exports && exports[key] === _PageType[key]) return;
|
|
77
77
|
Object.defineProperty(exports, key, {
|
|
78
78
|
enumerable: true,
|
|
79
|
-
get: function
|
|
79
|
+
get: function () {
|
|
80
80
|
return _PageType[key];
|
|
81
81
|
}
|
|
82
82
|
});
|
|
@@ -89,7 +89,7 @@ Object.keys(_BoundaryOrder).forEach(function (key) {
|
|
|
89
89
|
if (key in exports && exports[key] === _BoundaryOrder[key]) return;
|
|
90
90
|
Object.defineProperty(exports, key, {
|
|
91
91
|
enumerable: true,
|
|
92
|
-
get: function
|
|
92
|
+
get: function () {
|
|
93
93
|
return _BoundaryOrder[key];
|
|
94
94
|
}
|
|
95
95
|
});
|
|
@@ -102,7 +102,7 @@ Object.keys(_Statistics).forEach(function (key) {
|
|
|
102
102
|
if (key in exports && exports[key] === _Statistics[key]) return;
|
|
103
103
|
Object.defineProperty(exports, key, {
|
|
104
104
|
enumerable: true,
|
|
105
|
-
get: function
|
|
105
|
+
get: function () {
|
|
106
106
|
return _Statistics[key];
|
|
107
107
|
}
|
|
108
108
|
});
|
|
@@ -115,7 +115,7 @@ Object.keys(_StringType).forEach(function (key) {
|
|
|
115
115
|
if (key in exports && exports[key] === _StringType[key]) return;
|
|
116
116
|
Object.defineProperty(exports, key, {
|
|
117
117
|
enumerable: true,
|
|
118
|
-
get: function
|
|
118
|
+
get: function () {
|
|
119
119
|
return _StringType[key];
|
|
120
120
|
}
|
|
121
121
|
});
|
|
@@ -128,7 +128,7 @@ Object.keys(_UUIDType).forEach(function (key) {
|
|
|
128
128
|
if (key in exports && exports[key] === _UUIDType[key]) return;
|
|
129
129
|
Object.defineProperty(exports, key, {
|
|
130
130
|
enumerable: true,
|
|
131
|
-
get: function
|
|
131
|
+
get: function () {
|
|
132
132
|
return _UUIDType[key];
|
|
133
133
|
}
|
|
134
134
|
});
|
|
@@ -141,7 +141,7 @@ Object.keys(_MapType).forEach(function (key) {
|
|
|
141
141
|
if (key in exports && exports[key] === _MapType[key]) return;
|
|
142
142
|
Object.defineProperty(exports, key, {
|
|
143
143
|
enumerable: true,
|
|
144
|
-
get: function
|
|
144
|
+
get: function () {
|
|
145
145
|
return _MapType[key];
|
|
146
146
|
}
|
|
147
147
|
});
|
|
@@ -154,7 +154,7 @@ Object.keys(_ListType).forEach(function (key) {
|
|
|
154
154
|
if (key in exports && exports[key] === _ListType[key]) return;
|
|
155
155
|
Object.defineProperty(exports, key, {
|
|
156
156
|
enumerable: true,
|
|
157
|
-
get: function
|
|
157
|
+
get: function () {
|
|
158
158
|
return _ListType[key];
|
|
159
159
|
}
|
|
160
160
|
});
|
|
@@ -167,7 +167,7 @@ Object.keys(_EnumType).forEach(function (key) {
|
|
|
167
167
|
if (key in exports && exports[key] === _EnumType[key]) return;
|
|
168
168
|
Object.defineProperty(exports, key, {
|
|
169
169
|
enumerable: true,
|
|
170
|
-
get: function
|
|
170
|
+
get: function () {
|
|
171
171
|
return _EnumType[key];
|
|
172
172
|
}
|
|
173
173
|
});
|
|
@@ -180,7 +180,7 @@ Object.keys(_DateType).forEach(function (key) {
|
|
|
180
180
|
if (key in exports && exports[key] === _DateType[key]) return;
|
|
181
181
|
Object.defineProperty(exports, key, {
|
|
182
182
|
enumerable: true,
|
|
183
|
-
get: function
|
|
183
|
+
get: function () {
|
|
184
184
|
return _DateType[key];
|
|
185
185
|
}
|
|
186
186
|
});
|
|
@@ -193,7 +193,7 @@ Object.keys(_NullType).forEach(function (key) {
|
|
|
193
193
|
if (key in exports && exports[key] === _NullType[key]) return;
|
|
194
194
|
Object.defineProperty(exports, key, {
|
|
195
195
|
enumerable: true,
|
|
196
|
-
get: function
|
|
196
|
+
get: function () {
|
|
197
197
|
return _NullType[key];
|
|
198
198
|
}
|
|
199
199
|
});
|
|
@@ -206,7 +206,7 @@ Object.keys(_DecimalType).forEach(function (key) {
|
|
|
206
206
|
if (key in exports && exports[key] === _DecimalType[key]) return;
|
|
207
207
|
Object.defineProperty(exports, key, {
|
|
208
208
|
enumerable: true,
|
|
209
|
-
get: function
|
|
209
|
+
get: function () {
|
|
210
210
|
return _DecimalType[key];
|
|
211
211
|
}
|
|
212
212
|
});
|
|
@@ -219,7 +219,7 @@ Object.keys(_MilliSeconds).forEach(function (key) {
|
|
|
219
219
|
if (key in exports && exports[key] === _MilliSeconds[key]) return;
|
|
220
220
|
Object.defineProperty(exports, key, {
|
|
221
221
|
enumerable: true,
|
|
222
|
-
get: function
|
|
222
|
+
get: function () {
|
|
223
223
|
return _MilliSeconds[key];
|
|
224
224
|
}
|
|
225
225
|
});
|
|
@@ -232,7 +232,7 @@ Object.keys(_MicroSeconds).forEach(function (key) {
|
|
|
232
232
|
if (key in exports && exports[key] === _MicroSeconds[key]) return;
|
|
233
233
|
Object.defineProperty(exports, key, {
|
|
234
234
|
enumerable: true,
|
|
235
|
-
get: function
|
|
235
|
+
get: function () {
|
|
236
236
|
return _MicroSeconds[key];
|
|
237
237
|
}
|
|
238
238
|
});
|
|
@@ -245,7 +245,7 @@ Object.keys(_TimestampType).forEach(function (key) {
|
|
|
245
245
|
if (key in exports && exports[key] === _TimestampType[key]) return;
|
|
246
246
|
Object.defineProperty(exports, key, {
|
|
247
247
|
enumerable: true,
|
|
248
|
-
get: function
|
|
248
|
+
get: function () {
|
|
249
249
|
return _TimestampType[key];
|
|
250
250
|
}
|
|
251
251
|
});
|
|
@@ -258,7 +258,7 @@ Object.keys(_TimeType).forEach(function (key) {
|
|
|
258
258
|
if (key in exports && exports[key] === _TimeType[key]) return;
|
|
259
259
|
Object.defineProperty(exports, key, {
|
|
260
260
|
enumerable: true,
|
|
261
|
-
get: function
|
|
261
|
+
get: function () {
|
|
262
262
|
return _TimeType[key];
|
|
263
263
|
}
|
|
264
264
|
});
|
|
@@ -271,7 +271,7 @@ Object.keys(_IntType).forEach(function (key) {
|
|
|
271
271
|
if (key in exports && exports[key] === _IntType[key]) return;
|
|
272
272
|
Object.defineProperty(exports, key, {
|
|
273
273
|
enumerable: true,
|
|
274
|
-
get: function
|
|
274
|
+
get: function () {
|
|
275
275
|
return _IntType[key];
|
|
276
276
|
}
|
|
277
277
|
});
|
|
@@ -284,7 +284,7 @@ Object.keys(_JsonType).forEach(function (key) {
|
|
|
284
284
|
if (key in exports && exports[key] === _JsonType[key]) return;
|
|
285
285
|
Object.defineProperty(exports, key, {
|
|
286
286
|
enumerable: true,
|
|
287
|
-
get: function
|
|
287
|
+
get: function () {
|
|
288
288
|
return _JsonType[key];
|
|
289
289
|
}
|
|
290
290
|
});
|
|
@@ -297,7 +297,7 @@ Object.keys(_BsonType).forEach(function (key) {
|
|
|
297
297
|
if (key in exports && exports[key] === _BsonType[key]) return;
|
|
298
298
|
Object.defineProperty(exports, key, {
|
|
299
299
|
enumerable: true,
|
|
300
|
-
get: function
|
|
300
|
+
get: function () {
|
|
301
301
|
return _BsonType[key];
|
|
302
302
|
}
|
|
303
303
|
});
|
|
@@ -310,7 +310,7 @@ Object.keys(_SchemaElement).forEach(function (key) {
|
|
|
310
310
|
if (key in exports && exports[key] === _SchemaElement[key]) return;
|
|
311
311
|
Object.defineProperty(exports, key, {
|
|
312
312
|
enumerable: true,
|
|
313
|
-
get: function
|
|
313
|
+
get: function () {
|
|
314
314
|
return _SchemaElement[key];
|
|
315
315
|
}
|
|
316
316
|
});
|
|
@@ -323,7 +323,7 @@ Object.keys(_DataPageHeader).forEach(function (key) {
|
|
|
323
323
|
if (key in exports && exports[key] === _DataPageHeader[key]) return;
|
|
324
324
|
Object.defineProperty(exports, key, {
|
|
325
325
|
enumerable: true,
|
|
326
|
-
get: function
|
|
326
|
+
get: function () {
|
|
327
327
|
return _DataPageHeader[key];
|
|
328
328
|
}
|
|
329
329
|
});
|
|
@@ -336,7 +336,7 @@ Object.keys(_IndexPageHeader).forEach(function (key) {
|
|
|
336
336
|
if (key in exports && exports[key] === _IndexPageHeader[key]) return;
|
|
337
337
|
Object.defineProperty(exports, key, {
|
|
338
338
|
enumerable: true,
|
|
339
|
-
get: function
|
|
339
|
+
get: function () {
|
|
340
340
|
return _IndexPageHeader[key];
|
|
341
341
|
}
|
|
342
342
|
});
|
|
@@ -349,7 +349,7 @@ Object.keys(_DictionaryPageHeader).forEach(function (key) {
|
|
|
349
349
|
if (key in exports && exports[key] === _DictionaryPageHeader[key]) return;
|
|
350
350
|
Object.defineProperty(exports, key, {
|
|
351
351
|
enumerable: true,
|
|
352
|
-
get: function
|
|
352
|
+
get: function () {
|
|
353
353
|
return _DictionaryPageHeader[key];
|
|
354
354
|
}
|
|
355
355
|
});
|
|
@@ -362,7 +362,7 @@ Object.keys(_DataPageHeaderV).forEach(function (key) {
|
|
|
362
362
|
if (key in exports && exports[key] === _DataPageHeaderV[key]) return;
|
|
363
363
|
Object.defineProperty(exports, key, {
|
|
364
364
|
enumerable: true,
|
|
365
|
-
get: function
|
|
365
|
+
get: function () {
|
|
366
366
|
return _DataPageHeaderV[key];
|
|
367
367
|
}
|
|
368
368
|
});
|
|
@@ -375,7 +375,7 @@ Object.keys(_PageHeader).forEach(function (key) {
|
|
|
375
375
|
if (key in exports && exports[key] === _PageHeader[key]) return;
|
|
376
376
|
Object.defineProperty(exports, key, {
|
|
377
377
|
enumerable: true,
|
|
378
|
-
get: function
|
|
378
|
+
get: function () {
|
|
379
379
|
return _PageHeader[key];
|
|
380
380
|
}
|
|
381
381
|
});
|
|
@@ -388,7 +388,7 @@ Object.keys(_KeyValue).forEach(function (key) {
|
|
|
388
388
|
if (key in exports && exports[key] === _KeyValue[key]) return;
|
|
389
389
|
Object.defineProperty(exports, key, {
|
|
390
390
|
enumerable: true,
|
|
391
|
-
get: function
|
|
391
|
+
get: function () {
|
|
392
392
|
return _KeyValue[key];
|
|
393
393
|
}
|
|
394
394
|
});
|
|
@@ -401,7 +401,7 @@ Object.keys(_SortingColumn).forEach(function (key) {
|
|
|
401
401
|
if (key in exports && exports[key] === _SortingColumn[key]) return;
|
|
402
402
|
Object.defineProperty(exports, key, {
|
|
403
403
|
enumerable: true,
|
|
404
|
-
get: function
|
|
404
|
+
get: function () {
|
|
405
405
|
return _SortingColumn[key];
|
|
406
406
|
}
|
|
407
407
|
});
|
|
@@ -414,7 +414,7 @@ Object.keys(_PageEncodingStats).forEach(function (key) {
|
|
|
414
414
|
if (key in exports && exports[key] === _PageEncodingStats[key]) return;
|
|
415
415
|
Object.defineProperty(exports, key, {
|
|
416
416
|
enumerable: true,
|
|
417
|
-
get: function
|
|
417
|
+
get: function () {
|
|
418
418
|
return _PageEncodingStats[key];
|
|
419
419
|
}
|
|
420
420
|
});
|
|
@@ -427,7 +427,7 @@ Object.keys(_ColumnMetaData).forEach(function (key) {
|
|
|
427
427
|
if (key in exports && exports[key] === _ColumnMetaData[key]) return;
|
|
428
428
|
Object.defineProperty(exports, key, {
|
|
429
429
|
enumerable: true,
|
|
430
|
-
get: function
|
|
430
|
+
get: function () {
|
|
431
431
|
return _ColumnMetaData[key];
|
|
432
432
|
}
|
|
433
433
|
});
|
|
@@ -440,7 +440,7 @@ Object.keys(_ColumnChunk).forEach(function (key) {
|
|
|
440
440
|
if (key in exports && exports[key] === _ColumnChunk[key]) return;
|
|
441
441
|
Object.defineProperty(exports, key, {
|
|
442
442
|
enumerable: true,
|
|
443
|
-
get: function
|
|
443
|
+
get: function () {
|
|
444
444
|
return _ColumnChunk[key];
|
|
445
445
|
}
|
|
446
446
|
});
|
|
@@ -453,7 +453,7 @@ Object.keys(_RowGroup).forEach(function (key) {
|
|
|
453
453
|
if (key in exports && exports[key] === _RowGroup[key]) return;
|
|
454
454
|
Object.defineProperty(exports, key, {
|
|
455
455
|
enumerable: true,
|
|
456
|
-
get: function
|
|
456
|
+
get: function () {
|
|
457
457
|
return _RowGroup[key];
|
|
458
458
|
}
|
|
459
459
|
});
|
|
@@ -466,7 +466,7 @@ Object.keys(_TypeDefinedOrder).forEach(function (key) {
|
|
|
466
466
|
if (key in exports && exports[key] === _TypeDefinedOrder[key]) return;
|
|
467
467
|
Object.defineProperty(exports, key, {
|
|
468
468
|
enumerable: true,
|
|
469
|
-
get: function
|
|
469
|
+
get: function () {
|
|
470
470
|
return _TypeDefinedOrder[key];
|
|
471
471
|
}
|
|
472
472
|
});
|
|
@@ -479,7 +479,7 @@ Object.keys(_PageLocation).forEach(function (key) {
|
|
|
479
479
|
if (key in exports && exports[key] === _PageLocation[key]) return;
|
|
480
480
|
Object.defineProperty(exports, key, {
|
|
481
481
|
enumerable: true,
|
|
482
|
-
get: function
|
|
482
|
+
get: function () {
|
|
483
483
|
return _PageLocation[key];
|
|
484
484
|
}
|
|
485
485
|
});
|
|
@@ -492,7 +492,7 @@ Object.keys(_OffsetIndex).forEach(function (key) {
|
|
|
492
492
|
if (key in exports && exports[key] === _OffsetIndex[key]) return;
|
|
493
493
|
Object.defineProperty(exports, key, {
|
|
494
494
|
enumerable: true,
|
|
495
|
-
get: function
|
|
495
|
+
get: function () {
|
|
496
496
|
return _OffsetIndex[key];
|
|
497
497
|
}
|
|
498
498
|
});
|
|
@@ -505,7 +505,7 @@ Object.keys(_ColumnIndex).forEach(function (key) {
|
|
|
505
505
|
if (key in exports && exports[key] === _ColumnIndex[key]) return;
|
|
506
506
|
Object.defineProperty(exports, key, {
|
|
507
507
|
enumerable: true,
|
|
508
|
-
get: function
|
|
508
|
+
get: function () {
|
|
509
509
|
return _ColumnIndex[key];
|
|
510
510
|
}
|
|
511
511
|
});
|
|
@@ -518,7 +518,7 @@ Object.keys(_FileMetaData).forEach(function (key) {
|
|
|
518
518
|
if (key in exports && exports[key] === _FileMetaData[key]) return;
|
|
519
519
|
Object.defineProperty(exports, key, {
|
|
520
520
|
enumerable: true,
|
|
521
|
-
get: function
|
|
521
|
+
get: function () {
|
|
522
522
|
return _FileMetaData[key];
|
|
523
523
|
}
|
|
524
524
|
});
|
|
@@ -531,7 +531,7 @@ Object.keys(_TimeUnit).forEach(function (key) {
|
|
|
531
531
|
if (key in exports && exports[key] === _TimeUnit[key]) return;
|
|
532
532
|
Object.defineProperty(exports, key, {
|
|
533
533
|
enumerable: true,
|
|
534
|
-
get: function
|
|
534
|
+
get: function () {
|
|
535
535
|
return _TimeUnit[key];
|
|
536
536
|
}
|
|
537
537
|
});
|
|
@@ -544,7 +544,7 @@ Object.keys(_LogicalType).forEach(function (key) {
|
|
|
544
544
|
if (key in exports && exports[key] === _LogicalType[key]) return;
|
|
545
545
|
Object.defineProperty(exports, key, {
|
|
546
546
|
enumerable: true,
|
|
547
|
-
get: function
|
|
547
|
+
get: function () {
|
|
548
548
|
return _LogicalType[key];
|
|
549
549
|
}
|
|
550
550
|
});
|
|
@@ -557,7 +557,7 @@ Object.keys(_ColumnOrder).forEach(function (key) {
|
|
|
557
557
|
if (key in exports && exports[key] === _ColumnOrder[key]) return;
|
|
558
558
|
Object.defineProperty(exports, key, {
|
|
559
559
|
enumerable: true,
|
|
560
|
-
get: function
|
|
560
|
+
get: function () {
|
|
561
561
|
return _ColumnOrder[key];
|
|
562
562
|
}
|
|
563
563
|
});
|