Get the name of the current optimization level
(&self)
| 309 | |
| 310 | /// Get the name of the current optimization level |
| 311 | fn optimization_level_name(&self) -> String { |
| 312 | match self.optimization_level { |
| 313 | OptimizationLevel::None => "None".to_string(), |
| 314 | OptimizationLevel::Basic => "Basic".to_string(), |
| 315 | OptimizationLevel::Advanced => "Advanced".to_string(), |
| 316 | OptimizationLevel::Aggressive => "Aggressive".to_string(), |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | /// Plan a query with multiple alternatives for comparison |
| 321 | #[allow(dead_code)] // ROADMAP v0.3.0 - Multi-plan generation for cost-based optimization (see ROADMAP.md §5) |
no outgoing calls
no test coverage detected