Fix to work with pg >= 2.8.2

This commit is contained in:
Brian M. Carlson 2013-12-09 11:40:59 -05:00
parent 16e2001064
commit dc6521b7c1
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ CopyStreamQuery.prototype.handleError = function(e) {
this.emit('error', e)
}
CopyStreamQuery.prototype.streamData = function(connection) {
CopyStreamQuery.prototype.handleCopyInResponse = function(connection) {
this.pipe(connection.stream)
}

View File

@ -1,6 +1,6 @@
{
"name": "pg-copy-streams",
"version": "0.2.0",
"version": "0.2.1",
"description": "Low-Level COPY TO and COPY FROM streams for PostgreSQL in JavaScript using",
"main": "index.js",
"scripts": {