MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/orm/query.py:3439–3447  ·  view source on GitHub ↗
(
        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
3450class BulkDelete(BulkUD):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected