()
| 133 | } |
| 134 | |
| 135 | func (iter *SqlRowIter) String() string { |
| 136 | return fmt.Sprintf("SqlRowIter: columns=[%s], schema=[%s]", formatColumnTypes(iter.columns), formatSchema(iter.schema)) |
| 137 | } |
| 138 | |
| 139 | // Next retrieves the next row. It will return io.EOF if it's the last row. |
| 140 | func (iter *SqlRowIter) Next(ctx *sql.Context) (sql.Row, error) { |