pg-copy-streams-binary
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -54,3 +54,4 @@ /** | ||
// The backend sends a CopyOutResponse message to the frontend, followed by zero or more CopyData messages (always one per row) | ||
if (this._headerReceived && (chunk.length - offset) >= 2) { | ||
var UInt16Len = 2; | ||
while (this._headerReceived && (chunk.length - offset) >= UInt16Len) { | ||
var fieldCount = chunk.readUInt16BE(offset); | ||
@@ -57,0 +58,0 @@ offset += 2; |
{ | ||
"name": "pg-copy-streams-binary", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Streams for parsing and deparsing the COPY binary format", | ||
@@ -19,16 +19,16 @@ "main": "index.js", | ||
"dependencies": { | ||
"bufferput": "^0.1.2", | ||
"bufferput": "^0.1.3", | ||
"flatten": "^1.0.2", | ||
"ieee754": "^1.1.6", | ||
"int64-buffer": "^0.1.9", | ||
"ieee754": "^1.1.13", | ||
"int64-buffer": "^0.99.1007", | ||
"multi-fork": "0.0.2", | ||
"through2": "^2.0.1" | ||
"through2": "^3.0.1" | ||
}, | ||
"devDependencies": { | ||
"async": "^2.0.1", | ||
"async": "^2.6.2", | ||
"deeper": "^2.1.0", | ||
"gonna": "0.0.0", | ||
"pg": "^6.0.3", | ||
"pg-copy-streams": "^1.2.0" | ||
"pg": "^7.9.0", | ||
"pg-copy-streams": "^2.2.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
823
45692
17
+ Addedint64-buffer@0.99.1007(transitive)
+ Addedreadable-stream@3.6.2(transitive)
+ Addedsafe-buffer@5.2.1(transitive)
+ Addedstring_decoder@1.3.0(transitive)
+ Addedthrough2@3.0.2(transitive)
- Removedcore-util-is@1.0.3(transitive)
- Removedint64-buffer@0.1.10(transitive)
- Removedisarray@1.0.0(transitive)
- Removedprocess-nextick-args@2.0.1(transitive)
- Removedreadable-stream@2.3.8(transitive)
- Removedsafe-buffer@5.1.2(transitive)
- Removedstring_decoder@1.1.1(transitive)
- Removedthrough2@2.0.5(transitive)
- Removedxtend@4.0.2(transitive)
Updatedbufferput@^0.1.3
Updatedieee754@^1.1.13
Updatedint64-buffer@^0.99.1007
Updatedthrough2@^3.0.1