FormatCurrentPlan 格式化当前计划为可读文本
()
| 251 | |
| 252 | // FormatCurrentPlan 格式化当前计划为可读文本 |
| 253 | func (m *ExecutionPlanManager) FormatCurrentPlan() string { |
| 254 | if m.currentPlan == nil { |
| 255 | return "No active execution plan" |
| 256 | } |
| 257 | return executionplan.FormatPlan(m.currentPlan) |
| 258 | } |
| 259 | |
| 260 | // ValidateCurrentPlan 验证当前计划 |
| 261 | func (m *ExecutionPlanManager) ValidateCurrentPlan() []error { |
nothing calls this directly
no test coverage detected