| 185 | } |
| 186 | |
| 187 | type tableData struct { |
| 188 | query string |
| 189 | rows *sql.Rows |
| 190 | colLen int |
| 191 | needColTypes bool |
| 192 | colTypes []string |
| 193 | SQLRowIter |
| 194 | } |
| 195 | |
| 196 | func newTableData(query string, colLength int, needColTypes bool) *tableData { |
| 197 | return &tableData{ |
nothing calls this directly
no outgoing calls
no test coverage detected