Re: pgsql: SQL/JSON: add standard JSON constructor functions

2023-03-31 Thread Alvaro Herrera
On 2023-Mar-29, Alvaro Herrera wrote: > SQL/JSON: add standard JSON constructor functions > > This commit introduces the SQL/JSON standard-conforming constructors for > JSON types: > > JSON_ARRAY() > JSON_ARRAYAGG() > JSON_OBJECT() > JSON_OBJECTAGG() > Author: Nikita Glukhov > Author: Teodor S

pgsql: SQL/JSON: add standard JSON constructor functions

2023-03-29 Thread Alvaro Herrera
SQL/JSON: add standard JSON constructor functions This commit introduces the SQL/JSON standard-conforming constructors for JSON types: JSON_ARRAY() JSON_ARRAYAGG() JSON_OBJECT() JSON_OBJECTAGG() Most of the functionality was already present in PostgreSQL-specific functions, but these include som