File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const (
35
35
KeyExpression = 0x27
36
36
KeyDefTuple = 0x28
37
37
KeyData = 0x30
38
- KeyError = 0x31
38
+ KeyError24 = 0x31
39
39
KeyMetaData = 0x32
40
40
KeyBindCount = 0x34
41
41
KeySQLText = 0x40
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ func (resp *Response) decodeBody() (err error) {
172
172
if resp .Data , ok = res .([]interface {}); ! ok {
173
173
return fmt .Errorf ("result is not array: %v" , res )
174
174
}
175
- case KeyError :
175
+ case KeyError24 :
176
176
if resp .Error , err = d .DecodeString (); err != nil {
177
177
return err
178
178
}
@@ -262,7 +262,7 @@ func (resp *Response) decodeBodyTyped(res interface{}) (err error) {
262
262
if err = d .Decode (res ); err != nil {
263
263
return err
264
264
}
265
- case KeyError :
265
+ case KeyError24 :
266
266
if resp .Error , err = d .DecodeString (); err != nil {
267
267
return err
268
268
}
You can’t perform that action at this time.
0 commit comments