(plan, ctx)
| 241 | } |
| 242 | |
| 243 | function parseExplainTableData(plan, ctx) { |
| 244 | nodeExplainTableData(plan, ctx); |
| 245 | |
| 246 | plan['Plans']?.map((p)=>{ |
| 247 | parseExplainTableData(p, ctx); |
| 248 | }); |
| 249 | } |
| 250 | |
| 251 | function parsePlan(data, ctx) { |
| 252 | let idx = 1, |
no test coverage detected