CreateTable create a csv table in this source.
(tableName, csvRaw string)
| 185 | |
| 186 | // CreateTable create a csv table in this source. |
| 187 | func (m *Source) CreateTable(tableName, csvRaw string) { |
| 188 | if _, exists := m.raw[tableName]; !exists { |
| 189 | m.tablenamelist = append(m.tablenamelist, tableName) |
| 190 | } |
| 191 | m.raw[tableName] = csvRaw |
| 192 | m.loadTable(tableName) |
| 193 | } |