Return True if parent/child tables have some overlap.
(self)
| 2734 | return result |
| 2735 | |
| 2736 | def _tables_overlap(self) -> bool: |
| 2737 | """Return True if parent/child tables have some overlap.""" |
| 2738 | |
| 2739 | return selectables_overlap( |
| 2740 | self.parent_persist_selectable, self.child_persist_selectable |
| 2741 | ) |
| 2742 | |
| 2743 | def _annotate_remote(self) -> None: |
| 2744 | """Annotate the primaryjoin and secondaryjoin |
no test coverage detected