OpenMetadata/bootstrap/sql/migrations/native/1.9.10/mysql/postDataMigrationSQLScript.sql
2025-09-19 13:24:18 +05:30

14 lines
462 B
SQL

-- Migration script to restructure Databricks connection configuration
-- Move 'token' field from connection.config.token to connection.config.authType.token
UPDATE dbservice_entity
SET
json = JSON_SET (
JSON_REMOVE (json, '$.connection.config.token'),
'$.connection.config.authType',
JSON_OBJECT (
'token',
JSON_EXTRACT (json, '$.connection.config.token')
)
)
WHERE
serviceType = 'Databricks';