Return the tracing path under which the plan can be found in an optimizer trace.
(&self)
| 4826 | /// Return the tracing path under which the plan can be found in an |
| 4827 | /// optimizer trace. |
| 4828 | pub fn path(&self) -> &'static str { |
| 4829 | match self { |
| 4830 | Self::Raw => "optimize/raw", |
| 4831 | Self::Decorrelated => "optimize/hir_to_mir", |
| 4832 | Self::Local => "optimize/local", |
| 4833 | Self::Global => "optimize/global", |
| 4834 | Self::Physical => "optimize/finalize_dataflow", |
| 4835 | Self::FastPath => "optimize/fast_path", |
| 4836 | } |
| 4837 | } |
| 4838 | } |
| 4839 | |
| 4840 | /// What is being explained. |
no outgoing calls