refactoring: force cast args

This commit is contained in:
2019-06-17 14:13:12 +02:00
parent 00d2fa335d
commit f960e4a66a
4 changed files with 33 additions and 12 deletions

View File

@@ -3,6 +3,6 @@ LANGUAGE plpgsql
AS
$$
BEGIN
result = json_build_object('id', 3, 'name', 'test');
result = json_build_object('id', 3, 'name', name);
END;
$$