mirror of https://github.com/jackc/pgx.git
14 lines
301 B
Go
14 lines
301 B
Go
package pgproto3
|
|
|
|
type NoticeResponse ErrorResponse
|
|
|
|
func (*NoticeResponse) Backend() {}
|
|
|
|
func (dst *NoticeResponse) Decode(src []byte) error {
|
|
return (*ErrorResponse)(dst).Decode(src)
|
|
}
|
|
|
|
func (src *NoticeResponse) MarshalBinary() ([]byte, error) {
|
|
return (*ErrorResponse)(src).marshalBinary('N')
|
|
}
|