pg_text.sql 202 B

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