| 277 | } |
| 278 | |
| 279 | type pipelineBatchResults struct { |
| 280 | ctx context.Context |
| 281 | conn *Conn |
| 282 | pipeline *pgconn.Pipeline |
| 283 | lastRows *baseRows |
| 284 | err error |
| 285 | b *Batch |
| 286 | qqIdx int |
| 287 | closed bool |
| 288 | endTraced bool |
| 289 | } |
| 290 | |
| 291 | // Exec reads the results from the next query in the batch as if the query has been sent with Exec. |
| 292 | func (br *pipelineBatchResults) Exec() (pgconn.CommandTag, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected