Make an initial pass across a set of states for UPDATE corresponding to post_update. This includes obtaining key information for each state including its dictionary, mapper, the connection to use for the execution per state.
(base_mapper, states, uowtransaction)
| 288 | |
| 289 | |
| 290 | def _organize_states_for_post_update(base_mapper, states, uowtransaction): |
| 291 | """Make an initial pass across a set of states for UPDATE |
| 292 | corresponding to post_update. |
| 293 | |
| 294 | This includes obtaining key information for each state |
| 295 | including its dictionary, mapper, the connection to use for |
| 296 | the execution per state. |
| 297 | |
| 298 | """ |
| 299 | return _connections_for_states(base_mapper, uowtransaction, states) |
| 300 | |
| 301 | |
| 302 | def _organize_states_for_delete(base_mapper, states, uowtransaction): |
no test coverage detected