mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-30 12:49:58 +00:00

* Add looker test connection step * Add looker test connection step * Update Credentials * Fix explore link and add bitbucket reader * Format * Fix test * Fix spline linting * Fix import
15 lines
598 B
SQL
15 lines
598 B
SQL
-- we are not using the secretsManagerCredentials
|
|
UPDATE metadata_service_entity
|
|
SET json = JSON_REMOVE(json, '$.openMetadataServerConnection.secretsManagerCredentials')
|
|
where name = 'OpenMetadata';
|
|
|
|
-- Rename githubCredentials to gitCredentials
|
|
UPDATE dashboard_service_entity
|
|
SET json = JSON_INSERT(
|
|
JSON_REMOVE(json, '$.connection.config.githubCredentials'),
|
|
'$.connection.config.gitCredentials',
|
|
JSON_EXTRACT(json, '$.connection.config.githubCredentials')
|
|
)
|
|
WHERE serviceType = 'Looker'
|
|
AND JSON_EXTRACT(json, '$.connection.config.githubCredentials') IS NOT NULL;
|