File: cascades.rst

package info (click to toggle)
sqlalchemy 2.0.44%2Bds1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 26,740 kB
  • sloc: python: 414,900; makefile: 231; sh: 7
file content (779 lines) | stat: -rw-r--r-- 32,898 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
.. _unitofwork_cascades:

Cascades
========

Mappers support the concept of configurable :term:`cascade` behavior on
:func:`~sqlalchemy.orm.relationship` constructs.  This refers
to how operations performed on a "parent" object relative to a
particular :class:`.Session` should be propagated to items
referred to by that relationship (e.g. "child" objects), and is
affected by the :paramref:`_orm.relationship.cascade` option.

The default behavior of cascade is limited to cascades of the
so-called :ref:`cascade_save_update` and :ref:`cascade_merge` settings.
The typical "alternative" setting for cascade is to add
the :ref:`cascade_delete` and :ref:`cascade_delete_orphan` options;
these settings are appropriate for related objects which only exist as
long as they are attached to their parent, and are otherwise deleted.

Cascade behavior is configured using the
:paramref:`_orm.relationship.cascade` option on
:func:`~sqlalchemy.orm.relationship`::

    class Order(Base):
        __tablename__ = "order"

        items = relationship("Item", cascade="all, delete-orphan")
        customer = relationship("User", cascade="save-update")

To set cascades on a backref, the same flag can be used with the
:func:`~.sqlalchemy.orm.backref` function, which ultimately feeds
its arguments back into :func:`~sqlalchemy.orm.relationship`::

    class Item(Base):
        __tablename__ = "item"

        order = relationship(
            "Order", backref=backref("items", cascade="all, delete-orphan")
        )

.. sidebar:: The Origins of Cascade

    SQLAlchemy's notion of cascading behavior on relationships,
    as well as the options to configure them, are primarily derived
    from the similar feature in the Hibernate ORM; Hibernate refers
    to "cascade" in a few places such as in
    `Example: Parent/Child <https://docs.jboss.org/hibernate/orm/3.3/reference/en-US/html/example-parentchild.html>`_.
    If cascades are confusing, we'll refer to their conclusion,
    stating "The sections we have just covered can be a bit confusing.
    However, in practice, it all works out nicely."

The default value of :paramref:`_orm.relationship.cascade` is ``save-update, merge``.
The typical alternative setting for this parameter is either
``all`` or more commonly ``all, delete-orphan``.  The ``all`` symbol
is a synonym for ``save-update, merge, refresh-expire, expunge, delete``,
and using it in conjunction with ``delete-orphan`` indicates that the child
object should follow along with its parent in all cases, and be deleted once
it is no longer associated with that parent.

.. warning:: The ``all`` cascade option implies the
   :ref:`cascade_refresh_expire`
   cascade setting which may not be desirable when using the
   :ref:`asyncio_toplevel` extension, as it will expire related objects
   more aggressively than is typically appropriate in an explicit IO context.
   See the notes at :ref:`asyncio_orm_avoid_lazyloads` for further background.

The list of available values which can be specified for
the :paramref:`_orm.relationship.cascade` parameter are described in the following subsections.

.. _cascade_save_update:

save-update
-----------

``save-update`` cascade indicates that when an object is placed into a
:class:`.Session` via :meth:`.Session.add`, all the objects associated
with it via this :func:`_orm.relationship` should also be added to that
same :class:`.Session`.  Suppose we have an object ``user1`` with two
related objects ``address1``, ``address2``::

    >>> user1 = User()
    >>> address1, address2 = Address(), Address()
    >>> user1.addresses = [address1, address2]

If we add ``user1`` to a :class:`.Session`, it will also add
``address1``, ``address2`` implicitly::

    >>> sess = Session()
    >>> sess.add(user1)
    >>> address1 in sess
    True

``save-update`` cascade also affects attribute operations for objects
that are already present in a :class:`.Session`.  If we add a third
object, ``address3`` to the ``user1.addresses`` collection, it
becomes part of the state of that :class:`.Session`::

    >>> address3 = Address()
    >>> user1.addresses.append(address3)
    >>> address3 in sess
    True

A ``save-update`` cascade can exhibit surprising behavior when removing an item from
a collection or de-associating an object from a scalar attribute. In some cases, the
orphaned objects may still be pulled into the ex-parent's :class:`.Session`; this is
so that the flush process may handle that related object appropriately.
This case usually only arises if an object is removed from one :class:`.Session`
and added to another::

    >>> user1 = sess1.scalars(select(User).filter_by(id=1)).first()
    >>> address1 = user1.addresses[0]
    >>> sess1.close()  # user1, address1 no longer associated with sess1
    >>> user1.addresses.remove(address1)  # address1 no longer associated with user1
    >>> sess2 = Session()
    >>> sess2.add(user1)  # ... but it still gets added to the new session,
    >>> address1 in sess2  # because it's still "pending" for flush
    True

The ``save-update`` cascade is on by default, and is typically taken
for granted; it simplifies code by allowing a single call to
:meth:`.Session.add` to register an entire structure of objects within
that :class:`.Session` at once.   While it can be disabled, there
is usually not a need to do so.

.. _back_populates_cascade:

.. _backref_cascade:

Behavior of save-update cascade with bi-directional relationships
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The ``save-update`` cascade takes place **uni-directionally** in the context of
a bi-directional relationship, i.e. when using
the :paramref:`_orm.relationship.back_populates` or :paramref:`_orm.relationship.backref`
parameters to create two separate
:func:`_orm.relationship` objects which refer to each other.

An object that's not associated with a :class:`_orm.Session`, when assigned to
an attribute or collection on a parent object that is associated with a
:class:`_orm.Session`, will be automatically added to that same
:class:`_orm.Session`. However, the same operation in reverse will not have
this effect; an object that's not associated with a :class:`_orm.Session`, upon
which a child object that is associated with a :class:`_orm.Session` is
assigned, will not result in an automatic addition of that parent object to the
:class:`_orm.Session`.  The overall subject of this behavior is known
as "cascade backrefs", and represents a change in behavior that was standardized
as of SQLAlchemy 2.0.

To illustrate, given a mapping of ``Order`` objects which relate
bi-directionally to a series of ``Item`` objects via relationships
``Order.items`` and ``Item.order``::

    mapper_registry.map_imperatively(
        Order,
        order_table,
        properties={"items": relationship(Item, back_populates="order")},
    )

    mapper_registry.map_imperatively(
        Item,
        item_table,
        properties={"order": relationship(Order, back_populates="items")},
    )

If an ``Order`` is already associated with a :class:`_orm.Session`, and
an ``Item`` object is then created and appended to the ``Order.items``
collection of that ``Order``, the ``Item`` will be automatically cascaded
into that same :class:`_orm.Session`::

    >>> o1 = Order()
    >>> session.add(o1)
    >>> o1 in session
    True

    >>> i1 = Item()
    >>> o1.items.append(i1)
    >>> o1 is i1.order
    True
    >>> i1 in session
    True

Above, the bidirectional nature of ``Order.items`` and ``Item.order`` means
that appending to ``Order.items`` also assigns to ``Item.order``. At the same
time, the ``save-update`` cascade allowed for the ``Item`` object to be added
to the same :class:`_orm.Session` which the parent ``Order`` was already
associated.

However, if the operation above is performed in the **reverse** direction,
where ``Item.order`` is assigned rather than appending directly to
``Order.item``, the cascade operation into the :class:`_orm.Session` will
**not** take place automatically, even though the object assignments
``Order.items`` and ``Item.order`` will be in the same state as in the
previous example::

    >>> o1 = Order()
    >>> session.add(o1)
    >>> o1 in session
    True

    >>> i1 = Item()
    >>> i1.order = o1
    >>> i1 in order.items
    True
    >>> i1 in session
    False

In the above case, after the ``Item`` object is created and all the desired
state is set upon it, it should then be added to the :class:`_orm.Session`
explicitly::

    >>> session.add(i1)

In older versions of SQLAlchemy, the save-update cascade would occur
bidirectionally in all cases. It was then made optional using an option known
as ``cascade_backrefs``. Finally, in SQLAlchemy 1.4 the old behavior was
deprecated and the ``cascade_backrefs`` option was removed in SQLAlchemy 2.0.
The rationale is that users generally do not find it intuitive that assigning
to an attribute on an object, illustrated above as the assignment of
``i1.order = o1``, would alter the persistence state of that object ``i1`` such
that it's now pending within a :class:`_orm.Session`, and there would
frequently be subsequent issues where autoflush would prematurely flush the
object and cause errors, in those cases where the given object was still being
constructed and wasn't in a ready state to be flushed. The option to select between
uni-directional and bi-directional behvaiors was also removed, as this option
created two slightly different ways of working, adding to the overall learning
curve of the ORM as well as to the documentation and user support burden.

.. seealso::

    :ref:`change_5150` - background on the change in behavior for
    "cascade backrefs"

.. _cascade_delete:

delete
------

The ``delete`` cascade indicates that when a "parent" object
is marked for deletion, its related "child" objects should also be marked
for deletion.   If for example we have a relationship ``User.addresses``
with ``delete`` cascade configured::

    class User(Base):
        # ...

        addresses = relationship("Address", cascade="all, delete")

If using the above mapping, we have a ``User`` object and two
related ``Address`` objects::

    >>> user1 = sess1.scalars(select(User).filter_by(id=1)).first()
    >>> address1, address2 = user1.addresses

If we mark ``user1`` for deletion, after the flush operation proceeds,
``address1`` and ``address2`` will also be deleted:

.. sourcecode:: pycon+sql

    >>> sess.delete(user1)
    >>> sess.commit()
    {execsql}DELETE FROM address WHERE address.id = ?
    ((1,), (2,))
    DELETE FROM user WHERE user.id = ?
    (1,)
    COMMIT

Alternatively, if our ``User.addresses`` relationship does *not* have
``delete`` cascade, SQLAlchemy's default behavior is to instead de-associate
``address1`` and ``address2`` from ``user1`` by setting their foreign key
reference to ``NULL``.  Using a mapping as follows::

    class User(Base):
        # ...

        addresses = relationship("Address")

Upon deletion of a parent ``User`` object, the rows in ``address`` are not
deleted, but are instead de-associated:

.. sourcecode:: pycon+sql

    >>> sess.delete(user1)
    >>> sess.commit()
    {execsql}UPDATE address SET user_id=? WHERE address.id = ?
    (None, 1)
    UPDATE address SET user_id=? WHERE address.id = ?
    (None, 2)
    DELETE FROM user WHERE user.id = ?
    (1,)
    COMMIT

:ref:`cascade_delete` cascade on one-to-many relationships is often combined
with :ref:`cascade_delete_orphan` cascade, which will emit a DELETE for the
related row if the "child" object is deassociated from the parent.  The
combination of ``delete`` and ``delete-orphan`` cascade covers both
situations where SQLAlchemy has to decide between setting a foreign key
column to NULL versus deleting the row entirely.

The feature by default works completely independently of database-configured
``FOREIGN KEY`` constraints that may themselves configure ``CASCADE`` behavior.
In order to integrate more efficiently with this configuration, additional
directives described at :ref:`passive_deletes` should be used.

.. warning::  Note that the ORM's "delete" and "delete-orphan" behavior applies
   **only** to the use of the :meth:`_orm.Session.delete` method to mark
   individual ORM instances for deletion within the :term:`unit of work` process.
   It does **not** apply to "bulk" deletes, which would be emitted using
   the :func:`_sql.delete` construct as illustrated at
   :ref:`orm_queryguide_update_delete_where`.   See
   :ref:`orm_queryguide_update_delete_caveats` for additional background.

.. seealso::

    :ref:`passive_deletes`

    :ref:`cascade_delete_many_to_many`

    :ref:`cascade_delete_orphan`

.. _cascade_delete_many_to_many:

Using delete cascade with many-to-many relationships
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The ``cascade="all, delete"`` option works equally well with a many-to-many
relationship, one that uses :paramref:`_orm.relationship.secondary` to
indicate an association table.   When a parent object is deleted, and therefore
de-associated with its related objects, the unit of work process will normally
delete rows from the association table, but leave the related objects intact.
When combined with ``cascade="all, delete"``, additional ``DELETE`` statements
will take place for the child rows themselves.

The following example adapts that of :ref:`relationships_many_to_many` to
illustrate the ``cascade="all, delete"`` setting on **one** side of the
association::

    association_table = Table(
        "association",
        Base.metadata,
        Column("left_id", Integer, ForeignKey("left.id")),
        Column("right_id", Integer, ForeignKey("right.id")),
    )


    class Parent(Base):
        __tablename__ = "left"
        id = mapped_column(Integer, primary_key=True)
        children = relationship(
            "Child",
            secondary=association_table,
            back_populates="parents",
            cascade="all, delete",
        )


    class Child(Base):
        __tablename__ = "right"
        id = mapped_column(Integer, primary_key=True)
        parents = relationship(
            "Parent",
            secondary=association_table,
            back_populates="children",
        )

Above, when a ``Parent`` object is marked for deletion
using :meth:`_orm.Session.delete`, the flush process will as usual delete
the associated rows from the ``association`` table, however per cascade
rules it will also delete all related ``Child`` rows.


.. warning::

    If the above ``cascade="all, delete"`` setting were configured on **both**
    relationships, then the cascade action would continue cascading through all
    ``Parent`` and ``Child`` objects, loading each ``children`` and ``parents``
    collection encountered and deleting everything that's connected.   It is
    typically not desirable for "delete" cascade to be configured
    bidirectionally.

.. seealso::

  :ref:`relationships_many_to_many_deletion`

  :ref:`passive_deletes_many_to_many`

.. _passive_deletes:

Using foreign key ON DELETE cascade with ORM relationships
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The behavior of SQLAlchemy's "delete" cascade overlaps with the
``ON DELETE`` feature of a database ``FOREIGN KEY`` constraint.
SQLAlchemy allows configuration of these schema-level :term:`DDL` behaviors
using the :class:`_schema.ForeignKey` and :class:`_schema.ForeignKeyConstraint`
constructs; usage of these objects in conjunction with :class:`_schema.Table`
metadata is described at :ref:`on_update_on_delete`.

In order to use ``ON DELETE`` foreign key cascades in conjunction with
:func:`_orm.relationship`, it's important to note first and foremost that the
:paramref:`_orm.relationship.cascade` setting must still be configured to
match the desired "delete" or "set null" behavior (using ``delete`` cascade
or leaving it omitted), so that whether the ORM or the database
level constraints will handle the task of actually modifying the data in the
database, the ORM will still be able to appropriately track the state of
locally present objects that may be affected.

There is then an additional option on :func:`_orm.relationship` which
indicates the degree to which the ORM should try to run DELETE/UPDATE
operations on related rows itself, vs. how much it should rely upon expecting
the database-side FOREIGN KEY constraint cascade to handle the task; this is
the :paramref:`_orm.relationship.passive_deletes` parameter and it accepts
options ``False`` (the default), ``True`` and ``"all"``.

The most typical example is that where child rows are to be deleted when
parent rows are deleted, and that ``ON DELETE CASCADE`` is configured
on the relevant ``FOREIGN KEY`` constraint as well::


    class Parent(Base):
        __tablename__ = "parent"
        id = mapped_column(Integer, primary_key=True)
        children = relationship(
            "Child",
            back_populates="parent",
            cascade="all, delete",
            passive_deletes=True,
        )


    class Child(Base):
        __tablename__ = "child"
        id = mapped_column(Integer, primary_key=True)
        parent_id = mapped_column(Integer, ForeignKey("parent.id", ondelete="CASCADE"))
        parent = relationship("Parent", back_populates="children")

The behavior of the above configuration when a parent row is deleted
is as follows:

1. The application calls ``session.delete(my_parent)``, where ``my_parent``
   is an instance of ``Parent``.

2. When the :class:`_orm.Session` next flushes changes to the database,
   all of the **currently loaded** items within the ``my_parent.children``
   collection are deleted by the ORM, meaning a ``DELETE`` statement is
   emitted for each record.

3. If the ``my_parent.children`` collection is **unloaded**, then no ``DELETE``
   statements are emitted.   If the :paramref:`_orm.relationship.passive_deletes`
   flag were **not** set on this :func:`_orm.relationship`, then a ``SELECT``
   statement for unloaded ``Child`` objects would have been emitted.

4. A ``DELETE`` statement is then emitted for the ``my_parent`` row itself.

5. The database-level ``ON DELETE CASCADE`` setting ensures that all rows in
   ``child`` which refer to the affected row in ``parent`` are also deleted.

6. The ``Parent`` instance referred to by ``my_parent``, as well as all
   instances of ``Child`` that were related to this object and were
   **loaded** (i.e. step 2 above took place), are de-associated from the
   :class:`._orm.Session`.

.. note::

    To use "ON DELETE CASCADE", the underlying database engine must
    support ``FOREIGN KEY`` constraints and they must be enforcing:

    * When using MySQL, an appropriate storage engine must be
      selected.  See :ref:`mysql_storage_engines` for details.

    * When using SQLite, foreign key support must be enabled explicitly.
      See :ref:`sqlite_foreign_keys` for details.

.. topic:: Notes on Passive Deletes

    It is important to note the differences between the ORM and the relational
    database's notion of "cascade" as well as how they integrate:

    * A database level ``ON DELETE`` cascade is configured effectively
      on the **many-to-one** side of the relationship; that is, we configure
      it relative to the ``FOREIGN KEY`` constraint that is the "many" side
      of a relationship.  At the ORM level, **this direction is reversed**.
      SQLAlchemy handles the deletion of "child" objects relative to a
      "parent" from the "parent" side, which means that ``delete`` and
      ``delete-orphan`` cascade are configured on the **one-to-many**
      side.

    * Database level foreign keys with no ``ON DELETE`` setting are often used
      to **prevent** a parent row from being removed, as it would necessarily
      leave an unhandled related row present.  If this behavior is desired in a
      one-to-many relationship, SQLAlchemy's default behavior of setting a
      foreign key to ``NULL`` can be caught in one of two ways:

        * The easiest and most common is just to set the foreign-key-holding
          column to ``NOT NULL`` at the database schema level.  An attempt by
          SQLAlchemy to set the column to NULL will fail with a simple NOT NULL
          constraint exception.

        * The other, more special case way is to set the
          :paramref:`_orm.relationship.passive_deletes` flag to the string
          ``"all"``.  This has the effect of entirely disabling
          SQLAlchemy's behavior of setting the foreign key column to NULL,
          and a DELETE will be emitted for the parent row without any
          affect on the child row, even if the child row is present in
          memory. This may be desirable in the case when database-level
          foreign key triggers, either special ``ON DELETE`` settings or
          otherwise, need to be activated in all cases when a parent row is
          deleted.

    * Database level ``ON DELETE`` cascade is generally much more efficient
      than relying upon the "cascade" delete feature of SQLAlchemy.  The
      database can chain a series of cascade operations across many
      relationships at once; e.g. if row A is deleted, all the related rows in
      table B can be deleted, and all the C rows related to each of those B
      rows, and on and on, all within the scope of a single DELETE statement.
      SQLAlchemy on the other hand, in order to support the cascading delete
      operation fully, has to individually load each related collection in
      order to target all rows that then may have further related collections.
      That is, SQLAlchemy isn't sophisticated enough to emit a DELETE for all
      those related rows at once within this context.

    * SQLAlchemy doesn't **need** to be this sophisticated, as we instead
      provide smooth integration with the database's own ``ON DELETE``
      functionality, by using the :paramref:`_orm.relationship.passive_deletes`
      option in conjunction with properly configured foreign key constraints.
      Under this behavior, SQLAlchemy only emits DELETE for those rows that are
      already locally present in the :class:`.Session`; for any collections
      that are unloaded, it leaves them to the database to handle, rather than
      emitting a SELECT for them.  The section :ref:`passive_deletes` provides
      an example of this use.

    * While database-level ``ON DELETE`` functionality works only on the "many"
      side of a relationship, SQLAlchemy's "delete" cascade has **limited**
      ability to operate in the *reverse* direction as well, meaning it can be
      configured on the "many" side to delete an object on the "one" side when
      the reference on the "many" side is deleted.  However this can easily
      result in constraint violations if there are other objects referring to
      this "one" side from the "many", so it typically is only useful when a
      relationship is in fact a "one to one".  The
      :paramref:`_orm.relationship.single_parent` flag should be used to
      establish an in-Python assertion for this case.

.. _passive_deletes_many_to_many:

Using foreign key ON DELETE with many-to-many relationships
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

As described at :ref:`cascade_delete_many_to_many`, "delete" cascade works
for many-to-many relationships as well.  To make use of ``ON DELETE CASCADE``
foreign keys in conjunction with many to many, ``FOREIGN KEY`` directives
are configured on the association table.   These directives can handle
the task of automatically deleting from the association table, but cannot
accommodate the automatic deletion of the related objects themselves.

In this case, the :paramref:`_orm.relationship.passive_deletes` directive can
save us some additional ``SELECT`` statements during a delete operation but
there are still some collections that the ORM will continue to load, in order
to locate affected child objects and handle them correctly.

.. note::

  Hypothetical optimizations to this could include a single ``DELETE``
  statement against all parent-associated rows of the association table at
  once, then use ``RETURNING`` to locate affected related child rows, however
  this is not currently part of the ORM unit of work implementation.

In this configuration, we configure ``ON DELETE CASCADE`` on both foreign key
constraints of the association table.  We configure ``cascade="all, delete"``
on the parent->child side of the relationship, and we can then configure
``passive_deletes=True`` on the **other** side of the bidirectional
relationship as illustrated below::

    association_table = Table(
        "association",
        Base.metadata,
        Column("left_id", Integer, ForeignKey("left.id", ondelete="CASCADE")),
        Column("right_id", Integer, ForeignKey("right.id", ondelete="CASCADE")),
    )


    class Parent(Base):
        __tablename__ = "left"
        id = mapped_column(Integer, primary_key=True)
        children = relationship(
            "Child",
            secondary=association_table,
            back_populates="parents",
            cascade="all, delete",
        )


    class Child(Base):
        __tablename__ = "right"
        id = mapped_column(Integer, primary_key=True)
        parents = relationship(
            "Parent",
            secondary=association_table,
            back_populates="children",
            passive_deletes=True,
        )

Using the above configuration, the deletion of a ``Parent`` object proceeds
as follows:

1. A ``Parent`` object is marked for deletion using
   :meth:`_orm.Session.delete`.

2. When the flush occurs, if the ``Parent.children`` collection is not loaded,
   the ORM will first emit a SELECT statement in order to load the ``Child``
   objects that correspond to ``Parent.children``.

3. It will then then emit ``DELETE`` statements for the rows in ``association``
   which correspond to that parent row.

4. for each ``Child`` object affected by this immediate deletion, because
   ``passive_deletes=True`` is configured, the unit of work will not need to
   try to emit SELECT statements for each ``Child.parents`` collection as it
   is assumed the corresponding rows in ``association`` will be deleted.

5. ``DELETE`` statements are then emitted for each ``Child`` object that was
   loaded from ``Parent.children``.


.. _cascade_delete_orphan:

delete-orphan
-------------

``delete-orphan`` cascade adds behavior to the ``delete`` cascade,
such that a child object will be marked for deletion when it is
de-associated from the parent, not just when the parent is marked
for deletion.   This is a common feature when dealing with a related
object that is "owned" by its parent, with a NOT NULL foreign key,
so that removal of the item from the parent collection results
in its deletion.

``delete-orphan`` cascade implies that each child object can only
have one parent at a time, and in the **vast majority of cases is configured
only on a one-to-many relationship.**   For the much less common
case of setting it on a many-to-one or
many-to-many relationship, the "many" side can be forced to allow only
a single object at a time by configuring the :paramref:`_orm.relationship.single_parent` argument,
which establishes Python-side validation that ensures the object
is associated with only one parent at a time, however this greatly limits
the functionality of the "many" relationship and is usually not what's
desired.

.. seealso::

  :ref:`error_bbf0` - background on a common error scenario involving delete-orphan
  cascade.

.. _cascade_merge:

merge
-----

``merge`` cascade indicates that the :meth:`.Session.merge`
operation should be propagated from a parent that's the subject
of the :meth:`.Session.merge` call down to referred objects.
This cascade is also on by default.

.. _cascade_refresh_expire:

refresh-expire
--------------

``refresh-expire`` is an uncommon option, indicating that the
:meth:`.Session.expire` operation should be propagated from a parent
down to referred objects.   When using :meth:`.Session.refresh`,
the referred objects are expired only, but not actually refreshed.

.. _cascade_expunge:

expunge
-------

``expunge`` cascade indicates that when the parent object is removed
from the :class:`.Session` using :meth:`.Session.expunge`, the
operation should be propagated down to referred objects.


.. _session_deleting_from_collections:

Notes on Delete - Deleting Objects Referenced from Collections and Scalar Relationships
----------------------------------------------------------------------------------------

The ORM in general never modifies the contents of a collection or scalar
relationship during the flush process.  This means, if your class has a
:func:`_orm.relationship` that refers to a collection of objects, or a reference
to a single object such as many-to-one, the contents of this attribute will
not be modified when the flush process occurs.  Instead, it is expected
that the :class:`.Session` would eventually be expired, either through the expire-on-commit behavior of
:meth:`.Session.commit` or through explicit use of :meth:`.Session.expire`.
At that point, any referenced object or collection associated with that
:class:`.Session` will be cleared and will re-load itself upon next access.

A common confusion that arises regarding this behavior involves the use of the
:meth:`~.Session.delete` method.   When :meth:`.Session.delete` is invoked upon
an object and the :class:`.Session` is flushed, the row is deleted from the
database.  Rows that refer to the target row via  foreign key, assuming they
are tracked using a :func:`_orm.relationship` between the two mapped object types,
will also see their foreign key attributes UPDATED to null, or if delete
cascade is set up, the related rows will be deleted as well. However, even
though rows related to the deleted object might be themselves modified as well,
**no changes occur to relationship-bound collections or object references on
the objects** involved in the operation within the scope of the flush
itself.   This means if the object was a
member of a related collection, it will still be present on the Python side
until that collection is expired.  Similarly, if the object were
referenced via many-to-one or one-to-one from another object, that reference
will remain present on that object until the object is expired as well.

Below, we illustrate that after an ``Address`` object is marked
for deletion, it's still present in the collection associated with the
parent ``User``, even after a flush::

    >>> address = user.addresses[1]
    >>> session.delete(address)
    >>> session.flush()
    >>> address in user.addresses
    True

When the above session is committed, all attributes are expired.  The next
access of ``user.addresses`` will re-load the collection, revealing the
desired state::

    >>> session.commit()
    >>> address in user.addresses
    False

There is a recipe for intercepting :meth:`.Session.delete` and invoking this
expiration automatically; see `ExpireRelationshipOnFKChange <https://www.sqlalchemy.org/trac/wiki/UsageRecipes/ExpireRelationshipOnFKChange>`_ for this.  However, the usual practice of
deleting items within collections is to forego the usage of
:meth:`~.Session.delete` directly, and instead use cascade behavior to
automatically invoke the deletion as a result of removing the object from the
parent collection.  The ``delete-orphan`` cascade accomplishes this, as
illustrated in the example below::

    class User(Base):
        __tablename__ = "user"

        # ...

        addresses = relationship("Address", cascade="all, delete-orphan")


    # ...

    del user.addresses[1]
    session.flush()

Where above, upon removing the ``Address`` object from the ``User.addresses``
collection, the ``delete-orphan`` cascade has the effect of marking the ``Address``
object for deletion in the same way as passing it to :meth:`~.Session.delete`.

The ``delete-orphan`` cascade can also be applied to a many-to-one
or one-to-one relationship, so that when an object is de-associated from its
parent, it is also automatically marked for deletion.   Using ``delete-orphan``
cascade on a many-to-one or one-to-one requires an additional flag
:paramref:`_orm.relationship.single_parent` which invokes an assertion
that this related object is not to shared with any other parent simultaneously::

    class User(Base):
        # ...

        preference = relationship(
            "Preference", cascade="all, delete-orphan", single_parent=True
        )

Above, if a hypothetical ``Preference`` object is removed from a ``User``,
it will be deleted on flush::

    some_user.preference = None
    session.flush()  # will delete the Preference object

.. seealso::

    :ref:`unitofwork_cascades` for detail on cascades.