Method
__init__
(
self,
query: Query[Any],
values: Dict[_DMLColumnArgument, Any],
update_kwargs: Optional[Dict[Any, Any]],
)
Source from the content-addressed store, hash-verified
| 3437 | """BulkUD which handles UPDATEs.""" |
| 3438 | |
| 3439 | def __init__( |
| 3440 | self, |
| 3441 | query: Query[Any], |
| 3442 | values: Dict[_DMLColumnArgument, Any], |
| 3443 | update_kwargs: Optional[Dict[Any, Any]], |
| 3444 | ): |
| 3445 | super().__init__(query) |
| 3446 | self.values = values |
| 3447 | self.update_kwargs = update_kwargs |
| 3448 | |
| 3449 | |
| 3450 | class BulkDelete(BulkUD): |
Callers
nothing calls this directly
Tested by
no test coverage detected