// structure makes this difficult without duplication; need to factor
// out the filtering of attributes before rendering.
public RelXmlWriter(PrintWriter pw, SqlExplainLevel detailLevel) {
super(pw, detailLevel, true);
xmlOutput = new XmlOutput(pw);
xmlOutput.setGlob(true);
xmlOutput.setCompact(false);
}