Merge pull request #682 from WGH-/batch-len

Add Len() method to *pgx.Batch
pull/692/head
Jack Christensen 2020-02-22 09:21:21 -06:00 committed by GitHub
commit 710ddf7134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,11 @@ func (b *Batch) Queue(query string, arguments ...interface{}) {
})
}
// Len returns number of queries that have been queued so far.
func (b *Batch) Len() int {
return len(b.items)
}
type BatchResults interface {
// Exec reads the results from the next query in the batch as if the query has been sent with Conn.Exec.
Exec() (pgconn.CommandTag, error)