From 75107099e47192d0f19756fa0226ac06eb6f88b3 Mon Sep 17 00:00:00 2001 From: hackolade-bot Date: Fri, 6 Jun 2025 13:43:35 +0300 Subject: [PATCH] HCK-11441: fix conversion of object and array to Polyglot --- polyglot/convertAdapter.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/polyglot/convertAdapter.json b/polyglot/convertAdapter.json index 5c9fdbff..6247777f 100644 --- a/polyglot/convertAdapter.json +++ b/polyglot/convertAdapter.json @@ -79,12 +79,20 @@ }, { "from": { - "type": "variant" + "type": "object" }, "to": { - "type": "binary", - "childType": "blob", - "mode": "variant" + "type": "object", + "subtype": "" + } + }, + { + "from": { + "type": "array" + }, + "to": { + "type": "array", + "subtype": "" } } ]