From d5c510b59081881a2641f5233d090b442f74be66 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Wed, 24 Apr 2019 13:40:54 -0500 Subject: [PATCH] Remove unused Batch field --- batch.go | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/batch.go b/batch.go index 1362a02e..c77deab8 100644 --- a/batch.go +++ b/batch.go @@ -18,13 +18,12 @@ type batchItem struct { // Batch queries are a way of bundling multiple queries together to avoid // unnecessary network round trips. type Batch struct { - conn *Conn - items []*batchItem - resultsRead int - pendingCommandComplete bool - ctx context.Context - err error - inTx bool + conn *Conn + items []*batchItem + resultsRead int + ctx context.Context + err error + inTx bool mrr *pgconn.MultiResultReader }