Skip to content

Commit

Permalink
Had to make some little changes to the jsonb patching functions to he…
Browse files Browse the repository at this point in the history
…lp out the delta detection. Bumps to 3.37.2
  • Loading branch information
jeremydmiller committed Feb 14, 2025
1 parent 66b6982 commit ffb2863
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version>7.37.1</Version>
<Version>7.37.2</Version>
<LangVersion>12.0</LangVersion>
<Authors>Jeremy D. Miller;Babu Annamalai;Oskar Dudycz;Joona-Pekka Kokko</Authors>
<PackageIconUrl>https://martendb.io/logo.png</PackageIconUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Marten/Schema/SQL/mt_jsonb_append.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE OR REPLACE FUNCTION {databaseSchema}.mt_jsonb_append(jsonb, text[], jsonb, boolean, jsonb default null)
CREATE OR REPLACE FUNCTION {databaseSchema}.mt_jsonb_append(jsonb, text[], jsonb, boolean, jsonb default null::jsonb)
RETURNS jsonb
LANGUAGE plpgsql
AS $function$
Expand Down
2 changes: 1 addition & 1 deletion src/Marten/Schema/SQL/mt_jsonb_insert.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE OR REPLACE FUNCTION {databaseSchema}.mt_jsonb_insert(jsonb, text[], jsonb, integer, boolean, jsonb default null)
CREATE OR REPLACE FUNCTION {databaseSchema}.mt_jsonb_insert(jsonb, text[], jsonb, integer, boolean, jsonb default null::jsonb)
RETURNS jsonb
LANGUAGE plpgsql
AS $function$
Expand Down

0 comments on commit ffb2863

Please sign in to comment.