mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-24 09:50:01 +00:00

* staging commit * updated terms to french * fix(dataInsight): updated ES response to get entityType and total non tiered entities * fix(dataInsight): removed fields=* * fix(dataInsight): Added entity migration * cleaned up branch
15 lines
506 B
SQL
15 lines
506 B
SQL
-- Remove markDeletedTablesFromFilterOnly
|
|
UPDATE ingestion_pipeline_entity
|
|
SET json = JSON_REMOVE(json ,'$.sourceConfig.config.markDeletedTablesFromFilterOnly');
|
|
|
|
UPDATE data_insight_chart
|
|
SET json = JSON_INSERT(
|
|
JSON_REMOVE(json, '$.dimensions'),
|
|
'$.dimensions',
|
|
JSON_ARRAY(
|
|
JSON_OBJECT('name', 'entityFqn', 'chartDataType', 'STRING'),
|
|
JSON_OBJECT('name', 'owner', 'chartDataType', 'STRING'),
|
|
JSON_OBJECT('name', 'entityType', 'chartDataType', 'STRING')
|
|
)
|
|
)
|
|
WHERE name = 'mostViewedEntities'; |