(plan_def, name=None, rankdir='TB')
| 256 | |
| 257 | |
| 258 | def GetPlanGraph(plan_def, name=None, rankdir='TB'): |
| 259 | graph = pydot.Dot(name, rankdir=rankdir) |
| 260 | _draw_steps(plan_def.execution_step, graph) |
| 261 | return graph |
| 262 | |
| 263 | |
| 264 | def GetGraphInJson(operators_or_net, output_filepath): |
nothing calls this directly
no test coverage detected
searching dependent graphs…