diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-01-29 17:33:28 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-01-29 17:33:28 -0500 |
| commit | 8afb69ced876200c6bc4013108900e067130cb0e (patch) | |
| tree | 0bdba7e4f5dee342a0d96497f404bf071f53e49d /doc | |
| parent | 00e78f5f76c0f3e1000a7d239beed2d665170238 (diff) | |
| download | sqlalchemy-8afb69ced876200c6bc4013108900e067130cb0e.tar.gz | |
- Fixed regression whereby the "annotation" system used by the ORM was leaking
into the names used by standard functions in :mod:`sqlalchemy.sql.functions`,
such as ``func.coalesce()`` and ``func.max()``. Using these functions
in ORM attributes and thus producing annotated versions of them could
corrupt the actual function name rendered in the SQL. [ticket:2927]
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_09.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index b6bc07847..8f1daf003 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -16,6 +16,16 @@ .. change:: :tags: bug, sql + :tickets: 2927 + + Fixed regression whereby the "annotation" system used by the ORM was leaking + into the names used by standard functions in :mod:`sqlalchemy.sql.functions`, + such as ``func.coalesce()`` and ``func.max()``. Using these functions + in ORM attributes and thus producing annotated versions of them could + corrupt the actual function name rendered in the SQL. + + .. change:: + :tags: bug, sql :tickets: 2924, 2848 Fixed 0.9 regression where the new sortable support for :class:`.RowProxy` |
