Attributes atts = new Attributes();
atts.put(Label.OUTPUT_TYPE, outputRowType.getExplainer(context));
TableRowType ancestorRowType = outputRowType.schema().tableRowType(commonAncestor);
if ((ancestorRowType != inputRowType) && (ancestorRowType != outputRowType))
atts.put(Label.ANCESTOR_TYPE, ancestorRowType.getExplainer(context));
return new LookUpOperatorExplainer(getName(), atts, inputRowType, keepInput, inputOperator, context);
}