test: exec

This commit is contained in:
2025-05-17 13:39:40 +00:00
parent 2709bd6da8
commit c4c44b5064
8 changed files with 665 additions and 43 deletions
+6
View File
@@ -13,3 +13,9 @@ CREATE FUNCTION "hemar"."jsonb_get_by_path"("json" jsonb, "path" text)
RETURNS jsonb
LANGUAGE C STRICT
AS 'hemar', 'pg_jsonb_get_by_path';
-- Template rendering function
CREATE FUNCTION "hemar"."render"("define" jsonb, "template" text)
RETURNS text
LANGUAGE C STRICT
AS 'hemar', 'pg_template_render';