class array_agg(GenericFunction):
Support for the ARRAY_AGG function.
The func.array_agg(expr) construct returns an expression of
type _types.ARRAY
.
e.g.:
stmt = select(func.array_agg(table.c.values)[2:5])
See Also
_postgresql.array_agg
- PostgreSQL-specific version that
returns _postgresql.ARRAY
, which has PG-specific operators
added.
Method | __init__ |
Undocumented |
Class Variable | inherit_cache |
Undocumented |
Inherited from GenericFunction
:
Class Variable | _register |
Undocumented |
Class Variable | coerce_arguments |
Undocumented |
Instance Variable | _bind |
Undocumented |
Instance Variable | _has_args |
Undocumented |
Instance Variable | clause_expr |
Undocumented |
Instance Variable | packagenames |
Undocumented |
Instance Variable | type |
Undocumented |