use of org.apache.flink.table.planner.plan.nodes.exec.ExecNodeGraphValidator in project flink by apache.
the class ExecNodeGraphJsonSerializer method validate.
/**
* Check whether the given {@link ExecNodeGraph} is completely legal.
*/
private static void validate(ExecNodeGraph execGraph) {
ExecNodeVisitor visitor = new ExecNodeGraphValidator();
execGraph.getRootNodes().forEach(visitor::visit);
}
Aggregations