LogicalPlanTester planTester = new LogicalPlanTester(pc) ;
planTester.buildPlan("a = load '/passwd';");
LogicalPlan lp = planTester.buildPlan("b = group a by $0;");
PhysicalPlan pp = Util.buildPhysicalPlan(lp, pc);
POStore store = GenPhyOp.dummyPigStorageOp();
pp.addAsLeaf(store);
MROperPlan mrPlan = Util.buildMRPlan(pp, pc);
pc.getConf().setProperty("pig.exec.reducers.bytes.per.reducer", "100");
pc.getConf().setProperty("pig.exec.reducers.max", "10");
HExecutionEngine exe = pc.getExecutionEngine();