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 @@ -176,7 +176,7 @@ func (resp *Response) decodeBody() (err error) {
176
176
if resp .Data , ok = res .([]interface {}); ! ok {
177
177
return fmt .Errorf ("result is not array: %v" , res )
178
178
}
179
- case KeyError :
179
+ case KeyError24 :
180
180
if resp .Error , err = d .DecodeString (); err != nil {
181
181
return err
182
182
}
@@ -261,7 +261,7 @@ func (resp *Response) decodeBodyTyped(res interface{}) (err error) {
261
261
if err = d .Decode (res ); err != nil {
262
262
return err
263
263
}
264
- case KeyError :
264
+ case KeyError24 :
265
265
if resp .Error , err = d .DecodeString (); err != nil {
266
266
return err
267
267
}
You can’t perform that action at this time.
0 commit comments