(query)
| 65 | |
| 66 | Client.prototype._errorAllQueries = function (err) { |
| 67 | const enqueueError = (query) => { |
| 68 | process.nextTick(() => { |
| 69 | query.native = this.native |
| 70 | query.handleError(err) |
| 71 | }) |
| 72 | } |
| 73 | |
| 74 | if (this._hasActiveQuery()) { |
| 75 | enqueueError(this._activeQuery) |
no test coverage detected