Method
__init__
(
self,
query: Query[Any],
values: Dict[_DMLColumnArgument, Any],
update_kwargs: Optional[Dict[Any, Any]],
)
Source from the content-addressed store, hash-verified
| 3499 | """BulkUD which handles UPDATEs.""" |
| 3500 | |
| 3501 | def __init__( |
| 3502 | self, |
| 3503 | query: Query[Any], |
| 3504 | values: Dict[_DMLColumnArgument, Any], |
| 3505 | update_kwargs: Optional[Dict[Any, Any]], |
| 3506 | ): |
| 3507 | super().__init__(query) |
| 3508 | self.values = values |
| 3509 | self.update_kwargs = update_kwargs |
| 3510 | |
| 3511 | |
| 3512 | class BulkDelete(BulkUD): |
Callers
nothing calls this directly
Tested by
no test coverage detected