iteratorInternals is the Iterator implementation (hidden)
| 130 | |
| 131 | // iteratorInternals is the Iterator implementation (hidden) |
| 132 | type iteratorInternals struct { |
| 133 | rows *sql.Rows |
| 134 | recordMeta *recordMeta |
| 135 | columns []string |
| 136 | } |
| 137 | |
| 138 | // Next prepares the next result row for reading with the Scan method. |
| 139 | // It returns false is case of error or if there are not more data to fetch. |
nothing calls this directly
no outgoing calls
no test coverage detected