GetView gets the view by name.
(name string)
| 368 | |
| 369 | // GetView gets the view by name. |
| 370 | func (s *SchemaMetadata) GetView(name string) *storepb.ViewMetadata { |
| 371 | nameID := normalizeNameByCaseSensitivity(name, s.isObjectCaseSensitive) |
| 372 | return s.internalViews[nameID] |
| 373 | } |
| 374 | |
| 375 | func (s *SchemaMetadata) GetProcedure(name string) *storepb.ProcedureMetadata { |
| 376 | nameID := normalizeNameByCaseSensitivity(name, s.isDetailCaseSensitive) |
no test coverage detected