Panics if this is `Self::Error`.
(&self)
| 617 | |
| 618 | /// Panics if this is `Self::Error`. |
| 619 | pub fn schema_spec(&self) -> &SchemaSpecifier { |
| 620 | match self { |
| 621 | ResolvedSchemaName::Schema { schema_spec, .. } => schema_spec, |
| 622 | ResolvedSchemaName::Error => { |
| 623 | unreachable!("should have been handled by name resolution") |
| 624 | } |
| 625 | } |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | impl AstDisplay for ResolvedSchemaName { |
no outgoing calls
no test coverage detected