(element: _CE, **kw: Any)
| 2857 | local_side = util.column_set(self.parent_persist_selectable.c) |
| 2858 | |
| 2859 | def locals_(element: _CE, **kw: Any) -> Optional[_CE]: |
| 2860 | if "remote" not in element._annotations and element in local_side: |
| 2861 | return element._annotate({"local": True}) |
| 2862 | return None |
| 2863 | |
| 2864 | self.primaryjoin = visitors.replacement_traverse( |
| 2865 | self.primaryjoin, {}, locals_ |