(parent: str, schema: str | None, relname: str, alias: str | None, expected: bool)
| 566 | ], |
| 567 | ) |
| 568 | def test_matches_parent(parent: str, schema: str | None, relname: str, alias: str | None, expected: bool) -> None: |
| 569 | assert SQLCompleter._matches_parent(parent, schema, relname, alias) is expected |
| 570 | |
| 571 | |
| 572 | def test_copy_other_schemas_from_preserves_non_current_metadata() -> None: |
nothing calls this directly
no test coverage detected