(res *types.Response)
| 31 | } |
| 32 | |
| 33 | func newRows(res *types.Response) *rows { |
| 34 | return &rows{ |
| 35 | columns: res.Payload.Columns, |
| 36 | types: res.Payload.DeclTypes, |
| 37 | data: res.Payload.Rows, |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | // Columns implements driver.Rows.Columns method. |
| 42 | func (r *rows) Columns() []string { |
no outgoing calls