return null;
StatementNode innerStmt = ((ExplainStatementNode)stmt).getStatement();
if (compiler == null)
throw new UnsupportedExplainException();
if (!(innerStmt instanceof DMLStatementNode))
throw new UnableToExplainException ();
return new PostgresExplainStatement(compiler);
}