(tables map[string]*sqlTable)
| 258 | } |
| 259 | |
| 260 | func getTableGuides(tables map[string]*sqlTable) map[string]*tableGuide { |
| 261 | tableGuides := make(map[string]*tableGuide) |
| 262 | for table, tableInfo := range tables { |
| 263 | guide := &tableGuide{ |
| 264 | blankNode: getBlankNodeGen(tableInfo), |
| 265 | valuesRecorder: &fkValuesRecorder{ |
| 266 | refToBlank: make(map[string]string), |
| 267 | }, |
| 268 | } |
| 269 | |
| 270 | tableGuides[table] = guide |
| 271 | } |
| 272 | return tableGuides |
| 273 | } |
no test coverage detected
searching dependent graphs…