()
| 1452 | } |
| 1453 | |
| 1454 | private PigStats executeCompiledLogicalPlan() throws ExecException, |
| 1455 | FrontendException { |
| 1456 | // discover pig features used in this script |
| 1457 | ScriptState.get().setScriptFeatures(currDAG.lp); |
| 1458 | currDAG.lp.optimize(pigContext); |
| 1459 | |
| 1460 | return launchPlan(currDAG.lp, "job_pigexec_"); |
| 1461 | } |
| 1462 | |
| 1463 | /** |
| 1464 | * A common method for launching the jobs according to the logical plan |
no test coverage detected