(table *Table)
| 27 | } |
| 28 | |
| 29 | func getEmptyRow(table *Table) map[string]ValueInterface { |
| 30 | row := make(map[string]ValueInterface) |
| 31 | for _, column := range table.Columns { |
| 32 | row[column.Name] = NullValue{} |
| 33 | } |
| 34 | return row |
| 35 | } |
no outgoing calls
no test coverage detected