CommitEx commits the current transaction and returns all the pooled queries.
()
| 600 | |
| 601 | // CommitEx commits the current transaction and returns all the pooled queries. |
| 602 | func (s *State) CommitEx() (failed []*types.Request, queries []*QueryTracker, err error) { |
| 603 | return s.CommitExWithContext(context.Background()) |
| 604 | } |
| 605 | |
| 606 | // CommitExWithContext commits the current transaction and returns all the pooled queries |
| 607 | // with context. |