From d307d51aeaddb9097110dcb47685e77e576e45c8 Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Tue, 12 Nov 2024 13:27:22 +1100 Subject: [PATCH] Typo --- doc/build/core/connections.rst | 2 +- lib/sqlalchemy/sql/selectable.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build/core/connections.rst b/doc/build/core/connections.rst index eb76822ba3..030d41cd3b 100644 --- a/doc/build/core/connections.rst +++ b/doc/build/core/connections.rst @@ -1829,7 +1829,7 @@ as follows: * MariaDB - supported for MariaDB versions 10.5 and above * MySQL - no support, no RETURNING feature is present * Oracle Database - supports RETURNING with executemany using native python-oracledb / cx_Oracle - APIs, for all supported Oracle Databae versions 9 and above, using multi-row OUT + APIs, for all supported Oracle Database versions 9 and above, using multi-row OUT parameters. This is not the same implementation as "executemanyvalues", however has the same usage patterns and equivalent performance benefits. diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index 8aa4babeb9..0be5b6e853 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -3871,7 +3871,7 @@ class GenerativeSelect(SelectBase, Generative): table or as a column depending on backend. :param skip_locked: boolean, will render ``FOR UPDATE SKIP LOCKED`` on - Oracle Databae and PostgreSQL dialects or ``FOR SHARE SKIP LOCKED`` if + Oracle Database and PostgreSQL dialects or ``FOR SHARE SKIP LOCKED`` if ``read=True`` is also specified. :param key_share: boolean, will render ``FOR NO KEY UPDATE``, -- 2.47.3