()
| 605 | } |
| 606 | |
| 607 | @Test |
| 608 | public void testSim3() throws Exception { |
| 609 | PhysicalPlan php = new PhysicalPlan(); |
| 610 | |
| 611 | PhysicalPlan ldGrpChain1 = GenPhyOp.loadedGrpChain(); |
| 612 | PhysicalPlan ldGrpChain2 = GenPhyOp.loadedGrpChain(); |
| 613 | |
| 614 | php.merge(ldGrpChain1); |
| 615 | php.merge(ldGrpChain2); |
| 616 | |
| 617 | POUnion un = GenPhyOp.topUnionOp(); |
| 618 | php.addAsLeaf(un); |
| 619 | |
| 620 | PhysicalPlan ldFil1 = GenPhyOp.loadedFilter(); |
| 621 | |
| 622 | php.merge(ldFil1); |
| 623 | php.connect(ldFil1.getLeaves().get(0), un); |
| 624 | |
| 625 | POStore st = GenPhyOp.topStoreOp(); |
| 626 | php.add(st); |
| 627 | |
| 628 | php.connect(un, st); |
| 629 | run(php, "test/org/apache/pig/test/data/GoldenFiles/MRC3.gld"); |
| 630 | } |
| 631 | |
| 632 | @Test |
| 633 | public void testSim4() throws Exception { |
nothing calls this directly
no test coverage detected