(database, table string)
| 331 | } |
| 332 | |
| 333 | func (c TableSchemaCache) Get(database, table string) *TableSchema { |
| 334 | return c[fullTableName(database, table)] |
| 335 | } |
| 336 | |
| 337 | func TargetToSourceRewrites(databaseRewrites map[string]string) (map[string]string, error) { |
| 338 | targetToSourceRewrites := make(map[string]string) |
nothing calls this directly
no test coverage detected