(self, uowcommit, states)
| 920 | assert False |
| 921 | |
| 922 | def process_saves(self, uowcommit, states): |
| 923 | # for passive updates, register objects in the process stage |
| 924 | # so that we avoid ManyToOneDP's registering the object without |
| 925 | # the listonly flag in its own preprocess stage (results in UPDATE) |
| 926 | # statements being emitted |
| 927 | assert self.passive_updates |
| 928 | self._process_key_switches(states, uowcommit) |
| 929 | |
| 930 | def _key_switchers(self, uow, states): |
| 931 | switched, notswitched = uow.memo( |
nothing calls this directly
no test coverage detected