| 255 | } |
| 256 | |
| 257 | type tableMeta struct { |
| 258 | database string |
| 259 | table string |
| 260 | colTypes []*sql.ColumnType |
| 261 | selectedField string |
| 262 | selectedLen int |
| 263 | specCmts []string |
| 264 | showCreateTable string |
| 265 | showCreateView string |
| 266 | avgRowLength uint64 |
| 267 | hasImplicitRowID bool |
| 268 | } |
| 269 | |
| 270 | func (tm *tableMeta) ColumnTypes() []string { |
| 271 | colTypes := make([]string, len(tm.colTypes)) |
nothing calls this directly
no outgoing calls
no test coverage detected