blob: abbb4d2016de8ec4675a4ee7078cace6a45ee46f (
plain) (
blame)
1
2
3
4
5
6
7
|
/* syntax version 1 */
/* postgres can not */
pragma EmitAggApply;
SELECT
Pg::count(),Pg::count(key),Pg::min(key),Pg::max(key),Pg::string_agg(key,"|"u)
FROM (values ("a"u),("b"u),("c"u)) as a(key)
|