LogicalPlanTester planTester = new LogicalPlanTester() ;
planTester.buildPlan("a = load 'input';");
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);
HExecutionEngine exe = pc.getExecutionEngine();
ConfigurationValidator.validatePigProperties(exe.getConfiguration());
Configuration conf = ConfigurationUtil.toConfiguration(exe.getConfiguration());