LocalTajoTestingUtility.newQueryUnitAttemptId(), merged, workDir);
Expr context = analyzer.parse(QUERIES[2]);
LogicalNode plan = planner.createPlan(context).getRootBlock().getRoot();
PhysicalPlanner phyPlanner = new PhysicalPlannerImpl(conf, sm);
PhysicalExec exec = phyPlanner.createPlan(ctx, plan);
//maybe plan results with hash join exec algorithm usage. Must convert from HashLeftOuterJoinExec into NLLeftOuterJoinExec
ProjectionExec proj = (ProjectionExec) exec;
if (proj.getChild() instanceof HashLeftOuterJoinExec) {
HashLeftOuterJoinExec join = (HashLeftOuterJoinExec) proj.getChild();