ListMaterializedViewNames lists the materialized view names.
()
| 490 | |
| 491 | // ListMaterializedViewNames lists the materialized view names. |
| 492 | func (s *SchemaMetadata) ListMaterializedViewNames() []string { |
| 493 | var result []string |
| 494 | for _, view := range s.internalMaterializedView { |
| 495 | result = append(result, view.GetName()) |
| 496 | } |
| 497 | |
| 498 | slices.Sort(result) |
| 499 | return result |
| 500 | } |
| 501 | |
| 502 | // ListSequenceNames lists the sequence names. |
| 503 | func (s *SchemaMetadata) ListSequenceNames() []string { |
no test coverage detected