mirror of https://github.com/jackc/pgx.git
Remove unimplemented JSON marshalling for FunctionCall type.
parent
3d9a54f092
commit
40ecac487c
|
@ -2,7 +2,6 @@ package pgproto3
|
|||
|
||||
import (
|
||||
"encoding/binary"
|
||||
"encoding/json"
|
||||
"github.com/jackc/pgio"
|
||||
)
|
||||
|
||||
|
@ -93,12 +92,3 @@ func (src *FunctionCall) Encode(dst []byte) []byte {
|
|||
pgio.SetInt32(dst[sp:], int32(len(dst[sp:])))
|
||||
return dst
|
||||
}
|
||||
|
||||
// MarshalJSON implements encoding/json.Marshaler.
|
||||
func (src FunctionCall) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(struct {
|
||||
Type string
|
||||
}{
|
||||
Type: "FunctionCall",
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue