(p PreparedRowQueryer, ctx context.Context, args []interface{})
| 45 | } |
| 46 | |
| 47 | func PreparedQueryRowContext(p PreparedRowQueryer, ctx context.Context, args []interface{}) *sql.Row { |
| 48 | return p.QueryRow(args...) |
| 49 | } |
| 50 | |
| 51 | type RowQueryer interface { |
| 52 | QueryRow(string, ...interface{}) *sql.Row |
no test coverage detected