From d10e8f3aa4a07a27ee1447e13232fe722c58ca55 Mon Sep 17 00:00:00 2001 From: Vitalii Yarmus Date: Wed, 12 Nov 2025 17:01:24 +0200 Subject: [PATCH] HCK-13422: fix the conversion of type uniqueidentifier to polyglot and back --- polyglot/adapter.json | 6 +++++- polyglot/convertAdapter.json | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/polyglot/adapter.json b/polyglot/adapter.json index 3a8ce65d..e11a7041 100644 --- a/polyglot/adapter.json +++ b/polyglot/adapter.json @@ -119,7 +119,11 @@ } } } - ] + ], + { + "from": { "childType": "uuid" }, + "to": { "mode": "uniqueidentifier" } + } ] } } diff --git a/polyglot/convertAdapter.json b/polyglot/convertAdapter.json index 5ed91f14..e6893607 100644 --- a/polyglot/convertAdapter.json +++ b/polyglot/convertAdapter.json @@ -57,6 +57,10 @@ { "from": { "type": "json" }, "to": { "mode": "json" } + }, + { + "from": { "childType": "uniqueidentifier" }, + "to": { "mode": "uuid" } } ] },