Method
_get_multi_crud_kv_pairs
(
cls,
statement: UpdateBase,
multi_kv_iterator: Iterable[Dict[_DMLColumnArgument, Any]],
)
Source from the content-addressed store, hash-verified
| 176 | |
| 177 | @classmethod |
| 178 | def _get_multi_crud_kv_pairs( |
| 179 | cls, |
| 180 | statement: UpdateBase, |
| 181 | multi_kv_iterator: Iterable[Dict[_DMLColumnArgument, Any]], |
| 182 | ) -> List[Dict[_DMLColumnElement, Any]]: |
| 183 | return [ |
| 184 | { |
| 185 | coercions.expect(roles.DMLColumnRole, k): v |
| 186 | for k, v in mapping.items() |
| 187 | } |
| 188 | for mapping in multi_kv_iterator |
| 189 | ] |
| 190 | |
| 191 | @classmethod |
| 192 | def _get_crud_kv_pairs( |
Callers
nothing calls this directly
Tested by
no test coverage detected