From 1a189db041cc05770fc2f077f6c0195f6b480e4f Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Tue, 4 Jan 2022 19:59:32 -0600 Subject: [PATCH] Remove ValueTranscoder interface --- pgtype/pgtype.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pgtype/pgtype.go b/pgtype/pgtype.go index db706369..31cf6038 100644 --- a/pgtype/pgtype.go +++ b/pgtype/pgtype.go @@ -148,14 +148,6 @@ type TypeValue interface { TypeName() string } -// ValueTranscoder is a value that implements the text and binary encoding and decoding interfaces. -type ValueTranscoder interface { - Value - FormatSupport - ParamEncoder - ResultDecoder -} - type FormatSupport interface { BinaryFormatSupported() bool TextFormatSupported() bool