(frag, context)
| 623 | class PIE_GetSchema(AppAssets): |
| 624 | @staticmethod |
| 625 | def Init(frag, context): |
| 626 | v_label_num = frag.vertex_label_num() |
| 627 | for i in range(0, v_label_num): |
| 628 | nodes = frag.nodes(i) |
| 629 | context.init_value( |
| 630 | nodes, i, string(b""), PIEAggregateType.kTextAppendAggregate |
| 631 | ) |
| 632 | |
| 633 | @staticmethod |
| 634 | def PEval(frag, context): |
nothing calls this directly
no test coverage detected