Remove unimplemented JSON marshalling for FunctionCall type.

query-exec-mode
Martin Ashby 2021-11-06 16:33:51 +00:00 committed by Jack Christensen
parent 3d9a54f092
commit 40ecac487c
1 changed files with 0 additions and 10 deletions

View File

@ -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",
})
}