ColumnName returns the name of given column
(i int)
| 119 | |
| 120 | // ColumnName returns the name of given column |
| 121 | func (dt *Table) ColumnName(i int) string { |
| 122 | return dt.ColumnNames[i] |
| 123 | } |
| 124 | |
| 125 | // UpdateColumnNameMap updates the column name map, returning an error |
| 126 | // if any of the column names are duplicates. |
no outgoing calls
no test coverage detected