mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-24 09:50:01 +00:00
86 lines
2.3 KiB
SQL
86 lines
2.3 KiB
SQL
-- update service type to UnityCatalog - update database entity
|
|
UPDATE database_entity de
|
|
SET de.json = JSON_INSERT(
|
|
JSON_REMOVE(de.json, '$.serviceType'),
|
|
'$.serviceType',
|
|
'UnityCatalog'
|
|
)
|
|
where id in (
|
|
select toId from entity_relationship er
|
|
where
|
|
fromEntity = 'databaseService'
|
|
and toEntity = 'database'
|
|
and fromId in (
|
|
select id from dbservice_entity dbe
|
|
where
|
|
serviceType = 'Databricks'
|
|
and JSON_EXTRACT(
|
|
dbe.json, '$.connection.config.useUnityCatalog'
|
|
) = true
|
|
));
|
|
|
|
|
|
-- update service type to UnityCatalog - update database schema entity
|
|
UPDATE database_schema_entity dse
|
|
SET dse.json = JSON_INSERT(
|
|
JSON_REMOVE(dse.json, '$.serviceType'),
|
|
'$.serviceType',
|
|
'UnityCatalog'
|
|
)
|
|
where JSON_EXTRACT(dse.json, '$.database.id') in (
|
|
select toId from entity_relationship er
|
|
where
|
|
fromEntity = 'databaseService'
|
|
and toEntity = 'database'
|
|
and fromId in (
|
|
select id from dbservice_entity dbe
|
|
where
|
|
serviceType = 'Databricks'
|
|
and JSON_EXTRACT(
|
|
dbe.json, '$.connection.config.useUnityCatalog'
|
|
) = true
|
|
));
|
|
|
|
|
|
-- update service type to UnityCatalog - update table entity
|
|
UPDATE table_entity te
|
|
SET te.json = JSON_INSERT(
|
|
JSON_REMOVE(te.json, '$.serviceType'),
|
|
'$.serviceType',
|
|
'UnityCatalog'
|
|
)
|
|
where JSON_EXTRACT(te.json, '$.database.id') in (
|
|
select toId from entity_relationship er
|
|
where
|
|
fromEntity = 'databaseService'
|
|
and toEntity = 'database'
|
|
and fromId in (
|
|
select id from dbservice_entity dbe
|
|
where
|
|
serviceType = 'Databricks'
|
|
and JSON_EXTRACT(
|
|
dbe.json, '$.connection.config.useUnityCatalog'
|
|
) = true
|
|
));
|
|
|
|
|
|
-- update service type to UnityCatalog - update db service entity
|
|
UPDATE dbservice_entity de
|
|
SET de.json = JSON_INSERT(
|
|
JSON_REMOVE(de.json, '$.connection.config.type'),
|
|
'$.connection.config.type',
|
|
'UnityCatalog'
|
|
),de.json = JSON_INSERT(
|
|
JSON_REMOVE(de.json, '$.serviceType'),
|
|
'$.serviceType',
|
|
'UnityCatalog'
|
|
)
|
|
WHERE de.serviceType = 'Databricks'
|
|
AND JSON_EXTRACT(de.json, '$.connection.config.useUnityCatalog') = True
|
|
;
|
|
|
|
-- remove `useUnityCatalog` flag from service connection details of databricks
|
|
UPDATE dbservice_entity de
|
|
SET de.json = JSON_REMOVE(de.json, '$.connection.config.useUnityCatalog')
|
|
WHERE de.serviceType IN ('Databricks','UnityCatalog');
|