(element: _CE, **kw: Any)
| 2940 | local_side = util.column_set(self.parent_persist_selectable.c) |
| 2941 | |
| 2942 | def locals_(element: _CE, **kw: Any) -> Optional[_CE]: |
| 2943 | if "remote" not in element._annotations and element in local_side: |
| 2944 | return element._annotate({"local": True}) |
| 2945 | return None |
| 2946 | |
| 2947 | self.primaryjoin = visitors.replacement_traverse( |
| 2948 | self.primaryjoin, {}, locals_ |