Proposal
This allows to create a query of many records already grouped into a list which can be used immediately.
Implementation:
class ArrayAgg(Aggregate):
__slots__ = ()
_sql = 'ARRAY_AGG'
Proposal
This allows to create a query of many records already grouped into a list which can be used immediately.
Implementation:
class ArrayAgg(Aggregate):
__slots__ = ()
_sql = 'ARRAY_AGG'
We do not include it because it is a specific function of PostgreSQL and not part of any SQL standard.