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 e1030a9 commit 43e7933Copy full SHA for 43e7933
packages/pg/lib/query.js
@@ -47,6 +47,12 @@ class Query {
47
get portal() {
48
return this._config.portal || ''
49
}
50
+ get query_timeout(){
51
+ return this._config.query_timeout
52
+ }
53
+ clear(){
54
+ this._result.clear()
55
56
57
requiresPreparation() {
58
if (this.queryMode === 'extended') {
packages/pg/lib/result.js
@@ -23,6 +23,15 @@ class Result {
23
this._prebuiltEmptyResultObject = null
24
25
26
27
+ this.command = null
28
+ this.rowCount = null
29
+ this.oid = null
30
+ this.rows = []
31
+ this.fields = []
32
+ this._parsers = undefined
33
34
+
35
// adds a command complete message
36
addCommandComplete(msg) {
37
var match
0 commit comments