LogicalPlanTester planTester = new LogicalPlanTester() ;
planTester.buildPlan("a = load 'input';");
planTester.buildPlan("b = load 'input';");
LogicalPlan lp = planTester.buildPlan("c = join a by $0, b by $0 using \"skewed\";");
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());