use of org.apache.hyracks.algebricks.core.algebra.prettyprint.LogicalOperatorPrettyPrintVisitor in project asterixdb by apache.
the class EnforceStructuralPropertiesRule method printOp.
private void printOp(AbstractLogicalOperator op) throws AlgebricksException {
LogicalOperatorPrettyPrintVisitor pvisitor = new LogicalOperatorPrettyPrintVisitor();
PlanPrettyPrinter.printOperator(op, pvisitor, 0);
AlgebricksConfig.ALGEBRICKS_LOGGER.fine(pvisitor.get().toString());
}
Aggregations