From e22c023d8a3f3869cb64bd118111f8ae37400192 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 24 Aug 2019 10:52:28 -0500 Subject: [PATCH] Remove unused struct --- conn.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/conn.go b/conn.go index dbf6ac68..c857234c 100644 --- a/conn.go +++ b/conn.go @@ -69,11 +69,6 @@ type PreparedStatement struct { ParameterOIDs []pgtype.OID } -// PrepareExOptions is an option struct that can be passed to PrepareEx -type PrepareExOptions struct { - ParameterOIDs []pgtype.OID -} - // Identifier a PostgreSQL identifier or name. Identifiers can be composed of // multiple parts such as ["schema", "table"] or ["table", "column"]. type Identifier []string