diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-09-26 01:18:00 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-09-26 01:18:00 +0000 |
| commit | e708cfea0bdaae82ac30dd7d33f9442115b9af6d (patch) | |
| tree | 6eab4cff659978022c7da1c7b9114b074aa08136 /lib/sqlalchemy/sql/_dml_constructors.py | |
| parent | 6201b4d88666983b883b96d22a159aa2594de94b (diff) | |
| parent | 81d8394c0b5342cdc603cb2e07e12139c9506bf6 (diff) | |
| download | sqlalchemy-e708cfea0bdaae82ac30dd7d33f9442115b9af6d.tar.gz | |
Merge "New ORM Query Guide featuring DML support" into main
Diffstat (limited to 'lib/sqlalchemy/sql/_dml_constructors.py')
| -rw-r--r-- | lib/sqlalchemy/sql/_dml_constructors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/_dml_constructors.py b/lib/sqlalchemy/sql/_dml_constructors.py index 293d225f9..889865649 100644 --- a/lib/sqlalchemy/sql/_dml_constructors.py +++ b/lib/sqlalchemy/sql/_dml_constructors.py @@ -57,9 +57,9 @@ def insert(table: _DMLTableArgument) -> Insert: backends that support "returning", this turns off the "implicit returning" feature for the statement. - If both :paramref:`_expression.Insert.values` and compile-time bind + If both :paramref:`_expression.insert.values` and compile-time bind parameters are present, the compile-time bind parameters override the - information specified within :paramref:`_expression.Insert.values` on a + information specified within :paramref:`_expression.insert.values` on a per-key basis. The keys within :paramref:`_expression.Insert.values` can be either |
