()
| 659 | } |
| 660 | |
| 661 | @Test |
| 662 | public void testSim5() throws Exception { |
| 663 | PhysicalPlan php = new PhysicalPlan(); |
| 664 | PhysicalPlan ldFil1 = GenPhyOp.loadedFilter(); |
| 665 | PhysicalPlan ldFil2 = GenPhyOp.loadedFilter(); |
| 666 | php.merge(ldFil1); |
| 667 | php.merge(ldFil2); |
| 668 | |
| 669 | POUnion un = GenPhyOp.topUnionOp(); |
| 670 | php.addAsLeaf(un); |
| 671 | |
| 672 | POStore st = GenPhyOp.topStoreOp(); |
| 673 | php.add(st); |
| 674 | |
| 675 | php.connect(un, st); |
| 676 | run(php, "test/org/apache/pig/test/data/GoldenFiles/MRC5.gld"); |
| 677 | } |
| 678 | |
| 679 | @Test |
| 680 | public void testSim6() throws Exception { |
nothing calls this directly
no test coverage detected