ispn = (IndexScanPlanNode)pn;
assertEquals(1, ispn.getSearchKeyExpressions().size());
pn = compile(
"select * from l x, l where l.b = ? and DECODE(x.a, null, 0, x.a) = 0 and l.id = ? and l.lname = x.lname;");
System.out.println("DEBUG: " + pn.toExplainPlanString());
// Skip the Send and Projection plan nodes.
pn = pn.getChild(0).getChild(0);
assertTrue(pn instanceof NestLoopIndexPlanNode);
ispn = (IndexScanPlanNode)pn.getInlinePlanNode(PlanNodeType.INDEXSCAN);
json = ispn.toJSONString();