MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / select_identity_token

Method select_identity_token

lib/sqlalchemy/orm/mapper.py:2855–2869  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 2

_set_propagate_attrsMethod · 0.45
_annotateMethod · 0.45

Tested by

no test coverage detected