()
| 12 | ) |
| 13 | |
| 14 | func main() { |
| 15 | fmt.Println("=== Execution Plan Example ===") |
| 16 | fmt.Println() |
| 17 | |
| 18 | // Example 1: Create a plan manually |
| 19 | fmt.Println("--- Example 1: Manual Plan Creation ---") |
| 20 | manualPlanExample() |
| 21 | |
| 22 | // Example 2: Execute a plan |
| 23 | fmt.Println("\n--- Example 2: Plan Execution ---") |
| 24 | executionExample() |
| 25 | |
| 26 | // Example 3: Plan with dependencies |
| 27 | fmt.Println("\n--- Example 3: Plan with Dependencies ---") |
| 28 | dependencyExample() |
| 29 | } |
| 30 | |
| 31 | // manualPlanExample demonstrates manual plan creation |
| 32 | func manualPlanExample() { |
nothing calls this directly
no test coverage detected