()
| 345 | } |
| 346 | |
| 347 | func newMetadataObjectMaps() *metadataObjectMaps { |
| 348 | return &metadataObjectMaps{ |
| 349 | tables: make(map[string]*schema.TableDiff), |
| 350 | views: make(map[string]*schema.ViewDiff), |
| 351 | materializedViews: make(map[string]*schema.MaterializedViewDiff), |
| 352 | functions: make(map[string]*schema.FunctionDiff), |
| 353 | procedures: make(map[string]*schema.ProcedureDiff), |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | func getMigrationObjectID(schemaName, objectName string) string { |
| 358 | return fmt.Sprintf("%s.%s", schemaName, objectName) |
no outgoing calls
no test coverage detected