Do not detach streams before finishing
This commit is contained in:
parent
d26449cc69
commit
edc0462470
@ -23,6 +23,7 @@ CopyStreamQuery.prototype.submit = function(connection) {
|
|||||||
connection.query(this.text)
|
connection.query(this.text)
|
||||||
this.connection = connection
|
this.connection = connection
|
||||||
this.connection.removeAllListeners('copyData')
|
this.connection.removeAllListeners('copyData')
|
||||||
|
this.on('end', () => this._detach())
|
||||||
connection.stream.pipe(this)
|
connection.stream.pipe(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,7 +85,6 @@ CopyStreamQuery.prototype._transform = function(chunk, enc, cb) {
|
|||||||
case code.ErrorResponse:
|
case code.ErrorResponse:
|
||||||
case code.CopyDone:
|
case code.CopyDone:
|
||||||
pushBufferIfneeded();
|
pushBufferIfneeded();
|
||||||
this._detach()
|
|
||||||
this.push(null)
|
this.push(null)
|
||||||
return cb();
|
return cb();
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user