LogicalPlanTester lpt = new LogicalPlanTester();
lpt.buildPlan("a = load 'bla' as (i:int, n:chararray, d:double);");
lpt.buildPlan("b = order a by i, d desc;");
lpt.buildPlan("c = limit b 10;");
LogicalPlan lp = lpt.buildPlan("store c into 'foo';");
LOPrinter lpr = new LOPrinter(System.err, lp);
lpr.visit();
PhysicalPlan pp = buildPhysicalPlan(lp);
SortInfo si = ((POStore)(pp.getLeaves().get(0))).getSortInfo();
SortInfo expected = getSortInfo(
Arrays.asList(new String[] {"i", "d"}),
Arrays.asList(new Integer[] {0, 2}),