(self)
| 2853 | |
| 2854 | @util.memoized_property |
| 2855 | def select_identity_token(self): |
| 2856 | return ( |
| 2857 | expression.null() |
| 2858 | ._annotate( |
| 2859 | { |
| 2860 | "entity_namespace": self, |
| 2861 | "parententity": self, |
| 2862 | "parentmapper": self, |
| 2863 | "identity_token": True, |
| 2864 | } |
| 2865 | ) |
| 2866 | ._set_propagate_attrs( |
| 2867 | {"compile_state_plugin": "orm", "plugin_subject": self} |
| 2868 | ) |
| 2869 | ) |
| 2870 | |
| 2871 | @property |
| 2872 | def selectable(self) -> FromClause: |
nothing calls this directly
no test coverage detected