We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a2356 commit 3c10abcCopy full SHA for 3c10abc
packages/pg/lib/result.js
@@ -16,9 +16,8 @@ class Result {
16
this.fields = []
17
this._parsers = undefined
18
this._types = types
19
- this.RowCtor = null
20
- this.rowAsArray = rowMode === 'array'
21
- if (this.rowAsArray) {
+ const rowAsArray = rowMode === 'array'
+ if (rowAsArray) {
22
this.parseRow = this._parseRowAsArray
23
}
24
this._prebuiltEmptyResultObject = null
0 commit comments