Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dsnp/parquetjs

Package Overview
Dependencies
Maintainers
3
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dsnp/parquetjs - npm Package Compare versions

Comparing version 1.3.5 to 1.4.0

6

dist/lib/jsonSchema.js

@@ -88,4 +88,5 @@ "use strict";

case 'integer':
return fields.createListField('INT64', optionalFieldList);
case 'number':
return fields.createListField('INT64', optionalFieldList);
return fields.createListField('DOUBLE', optionalFieldList);
case 'boolean':

@@ -114,4 +115,5 @@ return fields.createListField('BOOLEAN', optionalFieldList);

case 'integer':
return fields.createIntField(64, optional);
case 'number':
return fields.createIntField(64, optional);
return fields.createDoubleField(optional);
case 'boolean':

@@ -118,0 +120,0 @@ return fields.createBooleanField(optional);

@@ -6,3 +6,3 @@ {

"types": "dist/parquet.d.ts",
"version": "1.3.5",
"version": "1.4.0",
"homepage": "https://github.com/LibertyDSNP/parquetjs",

@@ -9,0 +9,0 @@ "license": "MIT",

@@ -332,3 +332,3 @@ # parquet.js

combination with the `BOOLEAN`, `INT32` and `INT64` types. The RLE encoding
requires an additional `bitWidth` parameter that contains the maximum number of
requires an additional `typeLength` parameter that contains the maximum number of
bits required to store the largest value of the field.

@@ -338,3 +338,3 @@

var schema = new parquet.ParquetSchema({
age: { type: 'UINT_32', encoding: 'RLE', bitWidth: 7 },
age: { type: 'UINT_32', encoding: 'RLE', typeLength: 7 },
});

@@ -341,0 +341,0 @@ ```

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc