| 76 | } |
| 77 | |
| 78 | type Table struct { |
| 79 | name string |
| 80 | columns []NonAliasColumn |
| 81 | columnLookup map[string]NonAliasColumn |
| 82 | // If not empty, the name of the index to force |
| 83 | forcedIndex string |
| 84 | } |
| 85 | |
| 86 | // Returns the specified column, or errors if it doesn't exist in the table |
| 87 | func (t *Table) getColumn(name string) (NonAliasColumn, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected