MCPcopy Index your code
hub / github.com/brianc/node-postgres / _handleRowDescription

Method _handleRowDescription

packages/pg/lib/client.js:436–445  ·  view source on GitHub ↗
(msg)

Source from the content-addressed store, hash-verified

434 }
435
436 _handleRowDescription(msg) {
437 const activeQuery = this._getActiveQuery()
438 if (activeQuery == null) {
439 const error = new Error('Received unexpected rowDescription message from backend.')
440 this._handleErrorEvent(error)
441 return
442 }
443 // delegate rowDescription to active query
444 activeQuery.handleRowDescription(msg)
445 }
446
447 _handleDataRow(msg) {
448 const activeQuery = this._getActiveQuery()

Callers

nothing calls this directly

Calls 3

_getActiveQueryMethod · 0.95
_handleErrorEventMethod · 0.95
handleRowDescriptionMethod · 0.45

Tested by

no test coverage detected