mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-04 15:45:42 +00:00
24 lines
748 B
SQL
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;
|