()
| 585 | } |
| 586 | |
| 587 | @Test |
| 588 | public void testSim2() throws Exception { |
| 589 | PhysicalPlan php = new PhysicalPlan(); |
| 590 | |
| 591 | PhysicalPlan ldGrpChain1 = GenPhyOp.loadedGrpChain(); |
| 592 | PhysicalPlan ldGrpChain2 = GenPhyOp.loadedGrpChain(); |
| 593 | |
| 594 | php.merge(ldGrpChain1); |
| 595 | php.merge(ldGrpChain2); |
| 596 | |
| 597 | POUnion un = GenPhyOp.topUnionOp(); |
| 598 | php.addAsLeaf(un); |
| 599 | |
| 600 | POStore st = GenPhyOp.topStoreOp(); |
| 601 | php.add(st); |
| 602 | |
| 603 | php.connect(un, st); |
| 604 | run(php, "test/org/apache/pig/test/data/GoldenFiles/MRC2.gld"); |
| 605 | } |
| 606 | |
| 607 | @Test |
| 608 | public void testSim3() throws Exception { |
nothing calls this directly
no test coverage detected