From: Jeff Widman Date: Tue, 26 Jul 2016 02:07:19 +0000 (-0700) Subject: Fix typo X-Git-Tag: rel_1_0_15~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=705b4ac2a8c1f53caff6a8b9aa15e78d696e0c66;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo (cherry picked from commit 4aad91f687e905ef58132ab21af1ae60e56a9c8c) --- diff --git a/doc/build/faq/sessions.rst b/doc/build/faq/sessions.rst index ee280ae98b..f7247aa210 100644 --- a/doc/build/faq/sessions.rst +++ b/doc/build/faq/sessions.rst @@ -321,7 +321,7 @@ how do I use ON DELETE CASCADE with SA's ORM? SQLAlchemy will always issue UPDATE or DELETE statements for dependent rows which are currently loaded in the :class:`.Session`. For rows which are not loaded, it will by default issue SELECT statements to load -those rows and udpate/delete those as well; in other words it assumes +those rows and update/delete those as well; in other words it assumes there is no ON DELETE CASCADE configured. To configure SQLAlchemy to cooperate with ON DELETE CASCADE, see :ref:`passive_deletes`.