From dbbbfeed010ea35f478dfa48bf4beeed461dc9f5 Mon Sep 17 00:00:00 2001 From: Serhii Filonenko Date: Tue, 6 Aug 2024 14:30:26 +0300 Subject: [PATCH] HCK-7394: add a polyglot covert adapter for vector data type --- polyglot/convertAdapter.json | 55 ++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 polyglot/convertAdapter.json diff --git a/polyglot/convertAdapter.json b/polyglot/convertAdapter.json new file mode 100644 index 0000000..b80c05d --- /dev/null +++ b/polyglot/convertAdapter.json @@ -0,0 +1,55 @@ +/** + * Copyright © 2016-2022 by IntegrIT S.A. dba Hackolade. All rights reserved. + * + * The copyright to the computer software herein is the property of IntegrIT S.A. + * The software may be used and/or copied only with the written permission of + * IntegrIT S.A. or in accordance with the terms and conditions stipulated in + * the agreement/contract under which the software has been supplied. + * + * { + * "add": { + * "entity": [], + * "container": [], + * "model": [], + * "view": [], + * "field": { + * "": [] + * } + * }, + * "delete": { + * "entity": [], + * "container": [], + * "model": [], + * "view": [], + * "field": { + * "": [] + * } + * }, + * "modify": { + * "entity": [ + * { + * "from": { }, + * "to": { } + * } + * ], + * "container": [], + * "model": [], + * "view": [], + * "field": [] + * }, + * } + */ +{ + "modify": { + "field": [ + { + "from": { + "type": "vector" + }, + "to": { + "subtype": "vector" + } + } + ] + } +}