PgxQueryResult wraps pgx.Rows to implement QueryResult
| 83 | |
| 84 | // PgxQueryResult wraps pgx.Rows to implement QueryResult |
| 85 | type PgxQueryResult struct { |
| 86 | rows pgx.Rows |
| 87 | } |
| 88 | |
| 89 | func (r *PgxQueryResult) Next() bool { |
| 90 | return r.rows.Next() |
nothing calls this directly
no outgoing calls
no test coverage detected