(timeStarted time.Time, schemaId, action string)
| 601 | } |
| 602 | |
| 603 | func (tx *Transaction) measureTime(timeStarted time.Time, schemaId, action string) { |
| 604 | metrics.UpdateTimer(timeStarted, "tx.%s.%s", schemaId, action) |
| 605 | } |
| 606 | |
| 607 | func (tx *Transaction) Exec(sql string, args ...interface{}) error { |
| 608 | return tx.ExecContext(context.Background(), sql, args...) |
no outgoing calls
no test coverage detected