@@ -57,6 +57,7 @@ function Backend({
57
57
function ParseComplete ( ) {
58
58
onparse ( )
59
59
}
60
+
60
61
function BindComplete ( ) { /* No handling needed */ }
61
62
function CloseComplete ( ) { /* No handling needed */ }
62
63
@@ -91,7 +92,7 @@ function Backend({
91
92
)
92
93
}
93
94
94
- function CopyDone ( x ) { /* No handling needed */ }
95
+ function CopyDone ( ) { /* No handling needed */ }
95
96
96
97
function DataRow ( x ) {
97
98
let index = 7
@@ -118,7 +119,7 @@ function Backend({
118
119
: backend . query . result . push ( row )
119
120
}
120
121
121
- function CopyData ( x ) { /* No handling needed until implemented */ }
122
+ function CopyData ( ) { /* No handling needed until implemented */ }
122
123
123
124
function ErrorResponse ( x ) {
124
125
reject ( errors . generic ( error ( x ) ) )
@@ -145,7 +146,7 @@ function Backend({
145
146
: console . log ( error ( x ) )
146
147
}
147
148
148
- function NoData ( x ) { /* No handling needed */ }
149
+ function NoData ( ) { /* No handling needed */ }
149
150
150
151
function Authentication ( x ) {
151
152
const type = x . readInt32BE ( 5 )
@@ -161,11 +162,11 @@ function Backend({
161
162
onparameter ( k , v )
162
163
}
163
164
164
- function PortalSuspended ( x ) {
165
+ function PortalSuspended ( ) {
165
166
reject ( errors . notSupported ( 'PortalSuspended' ) )
166
167
}
167
168
168
- function ParameterDescription ( x ) {
169
+ function ParameterDescription ( ) {
169
170
reject ( errors . notSupported ( 'ParameterDescription' ) )
170
171
}
171
172
@@ -192,22 +193,21 @@ function Backend({
192
193
}
193
194
}
194
195
195
- function FunctionCallResponse ( x ) {
196
+ function FunctionCallResponse ( ) {
196
197
reject ( errors . notSupported ( 'FunctionCallResponse' ) )
197
198
}
198
199
199
- function NegotiateProtocolVersion ( x ) {
200
+ function NegotiateProtocolVersion ( ) {
200
201
reject ( errors . notSupported ( 'NegotiateProtocolVersion' ) )
201
202
}
202
203
203
- function CopyBothResponse ( x ) {
204
+ function CopyBothResponse ( ) {
204
205
reject ( errors . notSupported ( 'CopyBothResponse' ) )
205
206
}
206
207
207
- function ReadyForQuery ( x ) {
208
+ function ReadyForQuery ( ) {
208
209
onready ( )
209
210
}
210
-
211
211
}
212
212
213
213
function error ( x ) {
0 commit comments