(element: _CE, **kw: Any)
| 2689 | fixed_secondary = self.secondary |
| 2690 | |
| 2691 | def repl(element: _CE, **kw: Any) -> Optional[_CE]: |
| 2692 | if fixed_secondary.c.contains_column(element): |
| 2693 | return element._annotate({"remote": True}) |
| 2694 | return None |
| 2695 | |
| 2696 | self.primaryjoin = visitors.replacement_traverse( |
| 2697 | self.primaryjoin, {}, repl |
nothing calls this directly
no test coverage detected