PqQueryResult wraps sql.Rows to implement QueryResult
| 136 | |
| 137 | // PqQueryResult wraps sql.Rows to implement QueryResult |
| 138 | type PqQueryResult struct { |
| 139 | rows *sql.Rows |
| 140 | } |
| 141 | |
| 142 | func (r *PqQueryResult) Next() bool { |
| 143 | return r.rows.Next() |
nothing calls this directly
no outgoing calls
no test coverage detected