# HG changeset patch # User Alain Mazy # Date 1750152670 -7200 # Node ID c8857177c1d168f640ecba72cced6f0eba613925 # Parent 0010cb1c01455e6a56f7d7e316ca37be17263322 fix arg binary type for custom-data diff -r 0010cb1c0145 -r c8857177c1d1 Framework/Plugins/IndexBackend.cpp --- a/Framework/Plugins/IndexBackend.cpp Mon Jun 16 17:39:29 2025 +0200 +++ b/Framework/Plugins/IndexBackend.cpp Tue Jun 17 11:31:10 2025 +0200 @@ -384,7 +384,7 @@ statement.SetParameterType("hash", ValueType_Utf8String); statement.SetParameterType("hash-compressed", ValueType_Utf8String); statement.SetParameterType("revision", ValueType_Integer64); - statement.SetParameterType("custom-data", ValueType_Utf8String); + statement.SetParameterType("custom-data", ValueType_BinaryString); args.SetIntegerValue("id", id); args.SetIntegerValue("type", contentType); @@ -4674,7 +4674,7 @@ "UPDATE AttachedFiles SET customData = ${customData} WHERE uuid = ${uuid}"); statement.SetParameterType("uuid", ValueType_Utf8String); - statement.SetParameterType("customData", ValueType_Utf8String); + statement.SetParameterType("customData", ValueType_BinaryString); Dictionary args; args.SetUtf8Value("uuid", attachmentUuid); diff -r 0010cb1c0145 -r c8857177c1d1 PostgreSQL/NEWS --- a/PostgreSQL/NEWS Mon Jun 16 17:39:29 2025 +0200 +++ b/PostgreSQL/NEWS Tue Jun 17 11:31:10 2025 +0200 @@ -1,3 +1,9 @@ +Pending changes in the mainline +=============================== + + + + Release 8.0 (2025-06-16) ========================