| 724 | /// Catalog path for referencing objects |
| 725 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 726 | pub struct CatalogPath { |
| 727 | pub segments: Vec<String>, |
| 728 | pub location: Location, |
| 729 | } |
| 730 | |
| 731 | impl CatalogPath { |
| 732 | pub fn new(segments: Vec<String>, location: Location) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected