chore: import upstream snapshot with attribution
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
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
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
-- 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%';
|
||||
Reference in New Issue
Block a user