(element: _CE, **kw: Any)
| 2772 | fixed_secondary = self.secondary |
| 2773 | |
| 2774 | def repl(element: _CE, **kw: Any) -> Optional[_CE]: |
| 2775 | if fixed_secondary.c.contains_column(element): |
| 2776 | return element._annotate({"remote": True}) |
| 2777 | return None |
| 2778 | |
| 2779 | self.primaryjoin = visitors.replacement_traverse( |
| 2780 | self.primaryjoin, {}, repl |
nothing calls this directly
no test coverage detected