(&self)
| 117 | } |
| 118 | |
| 119 | pub(super) fn sql_server_capture_instance(&self) -> Option<&Arc<str>> { |
| 120 | match self { |
| 121 | ReferenceMetadata::SqlServer { |
| 122 | capture_instance, .. |
| 123 | } => Some(capture_instance), |
| 124 | _ => None, |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | pub(super) fn load_generator_desc(&self) -> Option<&Option<RelationDesc>> { |
| 129 | match self { |
no outgoing calls
no test coverage detected