diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-02-26 00:20:39 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-02-26 00:20:39 -0500 |
| commit | 0210695bd97e76f58d8781b69337816501482fb0 (patch) | |
| tree | 8d86db3143a258142c92ad7820f62a61a24409e2 /doc | |
| parent | f8914288f012c4ef635531f09a0e13bcacacdb2a (diff) | |
| download | sqlalchemy-0210695bd97e76f58d8781b69337816501482fb0.tar.gz | |
- Anonymous labeling is applied to a :attr:`.func` construct that is
passed to :func:`.column_property`, so that if the same attribute
is referred to as a column expression twice the names are de-duped,
thus avoiding "ambiguous column" errors. Previously, the
``.label(None)`` would need to be applied in order for the name
to be de-anonymized.
fixes #3663
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_10.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst index 36152c236..209f13bdc 100644 --- a/doc/build/changelog/changelog_10.rst +++ b/doc/build/changelog/changelog_10.rst @@ -19,6 +19,17 @@ :version: 1.0.13 .. change:: + :tags: bug, orm + :tickets: 3663 + + Anonymous labeling is applied to a :attr:`.func` construct that is + passed to :func:`.column_property`, so that if the same attribute + is referred to as a column expression twice the names are de-duped, + thus avoiding "ambiguous column" errors. Previously, the + ``.label(None)`` would need to be applied in order for the name + to be de-anonymized. + + .. change:: :tags: bug, py3k :tickets: 3660 |
