From 3b60c3f53eab8ee5896b3fde525bcf31d4233658 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 30 Jan 2023 12:21:02 -0500 Subject: [PATCH] fix post-production typo for #9174 merged in cae662a6383d3ae8f3673c70c3118ea3a1a1606e with one typo fix afterwards Fixes: #9174 Change-Id: I5a525da8a95f40c75da627fed49ce828bd498248 --- lib/sqlalchemy/engine/interfaces.py | 4 ++++ lib/sqlalchemy/sql/selectable.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py index c1de13221b..b33af3b614 100644 --- a/lib/sqlalchemy/engine/interfaces.py +++ b/lib/sqlalchemy/engine/interfaces.py @@ -267,6 +267,10 @@ IsolationLevel = Literal[ "READ COMMITTED", "READ UNCOMMITTED", "AUTOCOMMIT", + "AUTOCOMMIT+SERIALIZABLE", + "AUTOCOMMIT+REPEATABLE READ", + "AUTOCOMMIT+READ COMMITTED", + "AUTOCOMMIT+READ UNCOMMITTED", ] diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index 78fc7b1b79..f43e6b43f8 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -3863,7 +3863,7 @@ class GenerativeSelect(SelectBase, Generative): :param of: SQL expression or list of SQL expression elements, (typically :class:`_schema.Column` objects or a compatible expression, for some backends may also be a table expression) which will render - into a ``FOR UPDATE OF`` clause; supported by PostgreSQL Oracle, some + into a ``FOR UPDATE OF`` clause; supported by PostgreSQL, Oracle, some MySQL versions and possibly others. May render as a table or as a column depending on backend. -- 2.47.2