(query)
| 130 | |
| 131 | _errorAllQueries(err) { |
| 132 | const enqueueError = (query) => { |
| 133 | process.nextTick(() => { |
| 134 | query.handleError(err, this.connection) |
| 135 | }) |
| 136 | } |
| 137 | |
| 138 | const activeQuery = this._getActiveQuery() |
| 139 | if (activeQuery) { |
nothing calls this directly
no test coverage detected