MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/orm/query.py:3501–3509  ·  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

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
3512class BulkDelete(BulkUD):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected