(nodePath: str)
| 125 | |
| 126 | |
| 127 | def _index_pathname_of_(nodePath: str) -> str: # noqa: N803 |
| 128 | node_parent_path, node_name = split_path(nodePath) |
| 129 | return join_path(node_parent_path, _index_name_of_(node_name)) |
| 130 | |
| 131 | |
| 132 | def _index_pathname_of_column_(table_path: str, colpathname: str) -> str: |
no test coverage detected