From: Christopher Jones Date: Tue, 12 Nov 2024 02:27:22 +0000 (+1100) Subject: Typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d307d51aeaddb9097110dcb47685e77e576e45c8;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Typo --- 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``,