2023-08-22 09:19:16 +02:00

24 lines
748 B
SQL

-- queries to rename params to connectionOptions for trino
UPDATE dbservice_entity
SET json = jsonb_set(
json,
'{connection,config,connectionOptions}',
jsonb_extract_path(json, 'connection', 'config', 'params'),
true
)
WHERE serviceType = 'Trino';
UPDATE dbservice_entity
SET json = json::jsonb #- '{connection,config,params}'
where json #> '{serviceType}' in ('"Trino"');
-- Modify migrations for service connection of trino to move password under authType
UPDATE dbservice_entity
SET json = jsonb_set(
json #-'{connection,config,password}',
'{connection,config,authType}',
jsonb_build_object('password',json#>'{connection,config,password}')
)
WHERE serviceType = 'Trino'
and json#>'{connection,config,password}' is not null;