(
mapper: Mapper[Any],
mappings: Union[Iterable[InstanceState[_O]], Iterable[Dict[str, Any]]],
session_transaction: SessionTransaction,
*,
isstates: bool,
update_changed_only: bool,
use_orm_update_stmt: Literal[None] = ...,
enable_check_rowcount: bool = True,
)
| 256 | |
| 257 | @overload |
| 258 | def _bulk_update( |
| 259 | mapper: Mapper[Any], |
| 260 | mappings: Union[Iterable[InstanceState[_O]], Iterable[Dict[str, Any]]], |
| 261 | session_transaction: SessionTransaction, |
| 262 | *, |
| 263 | isstates: bool, |
| 264 | update_changed_only: bool, |
| 265 | use_orm_update_stmt: Literal[None] = ..., |
| 266 | enable_check_rowcount: bool = True, |
| 267 | ) -> None: ... |
| 268 | |
| 269 | |
| 270 | @overload |
no test coverage detected