diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-27 11:21:25 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-08-27 11:22:05 -0400 |
commit | 410be197ef5df234205b35f0d318b106a34e7f92 (patch) | |
tree | 369b0217b874a68190833f5884b8a37f3043d159 /lib/sqlalchemy/dialects/postgresql/array.py | |
parent | e2209f7534255855f33a2afedac913fbefe37484 (diff) | |
download | sqlalchemy-410be197ef5df234205b35f0d318b106a34e7f92.tar.gz |
- add a postgresql-specific form of array_agg() that injects the
ARRAY type, references #3132
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index 68c7b0bdb..ebdfe1695 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -22,7 +22,7 @@ def Any(other, arrexpr, operator=operators.eq): .. seealso:: - :func:`.expression.any` + :func:`.expression.any_` """ @@ -36,7 +36,7 @@ def All(other, arrexpr, operator=operators.eq): .. seealso:: - :func:`.expression.all` + :func:`.expression.all_` """ |