Files
postgres-json/src/test/resources/sql/function/Test/function_test_object.sql

8 lines
172 B
PL/PgSQL

CREATE OR REPLACE FUNCTION test_function_object (inout resource json)
LANGUAGE plpgsql
AS
$$
BEGIN
resource = json_build_object('id', 1, 'name', 'changedName');
END;
$$