| 114 | } |
| 115 | |
| 116 | type sqlQuerier struct { |
| 117 | sdb *sqlx.DB |
| 118 | db DBTX |
| 119 | |
| 120 | // serialRetryCount is the number of times to retry a transaction |
| 121 | // if it fails with a serialization error. |
| 122 | serialRetryCount int |
| 123 | } |
| 124 | |
| 125 | func (*sqlQuerier) Wrappers() []string { |
| 126 | return []string{} |
nothing calls this directly
no outgoing calls
no test coverage detected