diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-03-25 11:34:19 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-03-25 11:34:19 -0400 |
| commit | 478185d05df86c73ad212a11732eb5374c8637a1 (patch) | |
| tree | 16eb78dd2fba721a78a8450af1f88af19ea7dd7e /lib/sqlalchemy/engine | |
| parent | 050dee534b888a9a8e6768d2ad16c3f2380c7c9c (diff) | |
| download | sqlalchemy-478185d05df86c73ad212a11732eb5374c8637a1.tar.gz | |
Correct ambiguous func / class links
:func:`.sql.expression.select`, :func:`.sql.expression.insert`
and :class:`.sql.expression.Insert` were hitting many ambiguous
symbol errors, due to future.select, as well as the PG/MySQL
variants of Insert.
Change-Id: Iac862bfc172a7f7f0cbba5353a83dc203bed376c
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/result.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/result.py b/lib/sqlalchemy/engine/result.py index 6755903a0..ac033a5ae 100644 --- a/lib/sqlalchemy/engine/result.py +++ b/lib/sqlalchemy/engine/result.py @@ -1203,7 +1203,7 @@ class BaseResult(object): corresponding to the list of primary key columns in the target table. - This only applies to single row :func:`.insert` + This only applies to single row :func:`~.sql.expression.insert` constructs which did not explicitly specify :meth:`.Insert.returning`. |
