GetExternalTable gets the external table by name.
(name string)
| 390 | |
| 391 | // GetExternalTable gets the external table by name. |
| 392 | func (s *SchemaMetadata) GetExternalTable(name string) *ExternalTableMetadata { |
| 393 | nameID := normalizeNameByCaseSensitivity(name, s.isObjectCaseSensitive) |
| 394 | return s.internalExternalTable[nameID] |
| 395 | } |
| 396 | |
| 397 | // GetFunction gets the function by name. |
| 398 | // Note: For overloaded functions, this returns the first match by name only. |
no test coverage detected