MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / execute

Method execute

lib/sqlalchemy/orm/unitofwork.py:587–592  ·  view source on GitHub ↗
(self, uow)

Source from the content-addressed store, hash-verified

585 )
586
587 def execute(self, uow):
588 states = self._elements(uow)
589 if self.isdelete:
590 self.dependency_processor.process_deletes(uow, states)
591 else:
592 self.dependency_processor.process_saves(uow, states)
593
594 def per_state_flush_actions(self, uow):
595 # this is handled by SaveUpdateAll and DeleteAll,

Callers

nothing calls this directly

Calls 3

_elementsMethod · 0.95
process_deletesMethod · 0.45
process_savesMethod · 0.45

Tested by

no test coverage detected