Files
open-metadata--openmetadata/bootstrap/sql/migrations/native/1.10.0/mysql/postDataMigrationSQLScript.sql
T
wehub-resource-sync bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Waiting to run
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Blocked by required conditions
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Blocked by required conditions
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Blocked by required conditions
Java Checkstyle / java-checkstyle (push) Waiting to run
Maven Collate Tests / maven-collate-ci (push) Waiting to run
OpenMetadata Service Unit Tests / Detect Changes (push) Waiting to run
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Blocked by required conditions
Publish Package to Maven Central Repository / publish-maven-packages (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:35:45 +08:00

63 lines
2.0 KiB
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 in ('Databricks', 'UnityCatalog')
AND JSON_CONTAINS_PATH(json, 'one', '$.connection.config.token');
-- Migration to remove .png extension from appScreenshots in apps tables
-- Part of fixing appScreenshots extension handling change
-- Update apps_marketplace table - remove .png extension from appScreenshots only
UPDATE apps_marketplace
SET json = JSON_SET(
json,
'$.appScreenshots',
JSON_EXTRACT(
REPLACE(JSON_EXTRACT(json, '$.appScreenshots'), '.png"', '"'),
'$'
)
)
WHERE json IS NOT NULL
AND JSON_EXTRACT(json, '$.appScreenshots') IS NOT NULL
AND JSON_LENGTH(JSON_EXTRACT(json, '$.appScreenshots')) > 0
AND JSON_EXTRACT(json, '$.appScreenshots') LIKE '%.png%';
-- Update installed_apps table - remove .png extension from appScreenshots only
UPDATE installed_apps
SET json = JSON_SET(
json,
'$.appScreenshots',
JSON_EXTRACT(
REPLACE(JSON_EXTRACT(json, '$.appScreenshots'), '.png"', '"'),
'$'
)
)
WHERE json IS NOT NULL
AND JSON_EXTRACT(json, '$.appScreenshots') IS NOT NULL
AND JSON_LENGTH(JSON_EXTRACT(json, '$.appScreenshots')) > 0
AND JSON_EXTRACT(json, '$.appScreenshots') LIKE '%.png%';
-- Update apps_data_store table - remove .png extension from appScreenshots only
UPDATE apps_data_store
SET json = JSON_SET(
json,
'$.appScreenshots',
JSON_EXTRACT(
REPLACE(JSON_EXTRACT(json, '$.appScreenshots'), '.png"', '"'),
'$'
)
)
WHERE json IS NOT NULL
AND JSON_EXTRACT(json, '$.appScreenshots') IS NOT NULL
AND JSON_LENGTH(JSON_EXTRACT(json, '$.appScreenshots')) > 0
AND JSON_EXTRACT(json, '$.appScreenshots') LIKE '%.png%';