(node: Node)
| 107 | |
| 108 | |
| 109 | def _index_pathname_of(node: Node) -> str: |
| 110 | node_parent_path = split_path(node._v_pathname)[0] |
| 111 | return join_path(node_parent_path, _index_name_of(node)) |
| 112 | |
| 113 | |
| 114 | def _index_pathname_of_column(table: Table, colpathname: str) -> str: |
no test coverage detected