ptfDesc.setLlInfo(llInfo);
}
public void initializePTFChain(PartitionedTableFunctionDef tblFnDef) throws HiveException {
Stack<PTFInputDef> ptfChain = new Stack<PTFInputDef>();
PTFInputDef currentDef = tblFnDef;
while (currentDef != null ) {
ptfChain.push(currentDef);
currentDef = currentDef.getInput();
}
while ( !ptfChain.isEmpty() ) {
currentDef = ptfChain.pop();
if ( currentDef instanceof PTFQueryInputDef) {