diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-26 15:15:45 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-26 15:15:55 -0400 |
| commit | cfae9c2eaf0020be8d8acbe104cb693e0fee0796 (patch) | |
| tree | 37e608da4c00e645b188341ff0a43b4bae42096b /doc | |
| parent | 7024745a142e261efb6d878389d01a06673b655c (diff) | |
| download | sqlalchemy-cfae9c2eaf0020be8d8acbe104cb693e0fee0796.tar.gz | |
- Added support for the SQL-standard function :class:`.array_agg`,
which automatically returns an :class:`.Array` of the correct type
and supports index / slice operations. As arrays are only
supported on Postgresql at the moment, only actually works on
Postgresql. fixes #3132
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_11.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst index 2c14731aa..0a6543575 100644 --- a/doc/build/changelog/changelog_11.rst +++ b/doc/build/changelog/changelog_11.rst @@ -22,6 +22,16 @@ :version: 1.1.0b1 .. change:: + :tags: feature, sql, postgresql + :tickets: 3132 + + Added support for the SQL-standard function :class:`.array_agg`, + which automatically returns an :class:`.Array` of the correct type + and supports index / slice operations. As arrays are only + supported on Postgresql at the moment, only actually works on + Postgresql. + + .. change:: :tags: feature, sql :tickets: 3516 |
