Skip to content

Commit 31030c2

Browse files
committed
Fix attr in check preventing intermingling of querystream and getrow
1 parent 91648e5 commit 31030c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/queryStream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class QueryStream extends Readable {
9898
this.destroy(err);
9999
} finally {
100100
this._fetching = false;
101-
if (this.resultSet) {
101+
if (this._resultSet) {
102102
this._resultSet._allowGetRowCall = false;
103103
} else {
104104
this.emit('_doneFetching');

0 commit comments

Comments
 (0)