()
| 677 | } |
| 678 | |
| 679 | @Test |
| 680 | public void testSim6() throws Exception { |
| 681 | PhysicalPlan php = new PhysicalPlan(); |
| 682 | |
| 683 | PhysicalPlan ldGrpChain1 = GenPhyOp.loadedGrpChain(); |
| 684 | PhysicalPlan ldGrpChain2 = GenPhyOp.loadedGrpChain(); |
| 685 | |
| 686 | POLocalRearrange lr1 = GenPhyOp.topLocalRearrangeOp(); |
| 687 | POLocalRearrange lr2 = GenPhyOp.topLocalRearrangeOp(); |
| 688 | |
| 689 | ldGrpChain1.addAsLeaf(lr1); |
| 690 | ldGrpChain2.addAsLeaf(lr2); |
| 691 | |
| 692 | php.merge(ldGrpChain1); |
| 693 | php.merge(ldGrpChain2); |
| 694 | |
| 695 | POGlobalRearrange gr = GenPhyOp.topGlobalRearrangeOp(); |
| 696 | php.addAsLeaf(gr); |
| 697 | |
| 698 | POPackage pk = GenPhyOp.topPackageOp(); |
| 699 | php.addAsLeaf(pk); |
| 700 | |
| 701 | POStore st = GenPhyOp.topStoreOp(); |
| 702 | php.addAsLeaf(st); |
| 703 | run(php, "test/org/apache/pig/test/data/GoldenFiles/MRC6.gld"); |
| 704 | |
| 705 | } |
| 706 | |
| 707 | @Test |
| 708 | public void testSim7() throws Exception { |
nothing calls this directly
no test coverage detected