diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-24 14:33:50 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-24 14:33:50 -0400 |
| commit | 0df977ccad63831375d8a7bc6383385c331d9742 (patch) | |
| tree | 18d5f67dd70a7fb8090e230b7f86e2c3eece7c26 /doc/build | |
| parent | 07c01b77f16a08cecdad2c80c1283bed46a7f815 (diff) | |
| download | sqlalchemy-0df977ccad63831375d8a7bc6383385c331d9742.tar.gz | |
- Added a supported :meth:`.FunctionElement.alias` method to functions,
e.g. the ``func`` construct. Previously, behavior for this method
was undefined. The current behavior mimics that of pre-0.9.4,
which is that the function is turned into a single-column FROM
clause with the given alias name, where the column itself is
anonymously named.
fixes #3137
Diffstat (limited to 'doc/build')
| -rw-r--r-- | doc/build/changelog/changelog_09.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index 3ec09076b..44b633a1d 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -13,6 +13,18 @@ .. changelog:: :version: 0.9.8 + .. change:: + :tags: bug, postgresql + :versions: 1.0.0 + :tickets: 3137 + + Added a supported :meth:`.FunctionElement.alias` method to functions, + e.g. the ``func`` construct. Previously, behavior for this method + was undefined. The current behavior mimics that of pre-0.9.4, + which is that the function is turned into a single-column FROM + clause with the given alias name, where the column itself is + anonymously named. + .. changelog:: :version: 0.9.7 :released: July 22, 2014 |
