mirror of https://github.com/jackc/pgx.git
Remove unused Batch.resultsRead
parent
187157e773
commit
044a55ad2c
9
batch.go
9
batch.go
|
@ -18,11 +18,10 @@ type batchItem struct {
|
||||||
// Batch queries are a way of bundling multiple queries together to avoid
|
// Batch queries are a way of bundling multiple queries together to avoid
|
||||||
// unnecessary network round trips.
|
// unnecessary network round trips.
|
||||||
type Batch struct {
|
type Batch struct {
|
||||||
conn *Conn
|
conn *Conn
|
||||||
items []*batchItem
|
items []*batchItem
|
||||||
resultsRead int
|
ctx context.Context
|
||||||
ctx context.Context
|
err error
|
||||||
err error
|
|
||||||
|
|
||||||
mrr *pgconn.MultiResultReader
|
mrr *pgconn.MultiResultReader
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue