mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-12 03:29:53 +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 * feat: Added entity URL for most viewed entity * feat(dataInsight): Added href to entity * feat(DataInsight): Added backend logic for entity href * Fix conflict resolving typos * Update openmetadata-service/src/main/resources/json/data/dataInsight/mostViewedEntities.json Co-authored-by: Nahuel <nahuel@getcollate.io> * fix: addressed comments from PR review Co-authored-by: Nahuel <nahuel@getcollate.io>
11 lines
476 B
SQL
11 lines
476 B
SQL
-- Remove markDeletedTablesFromFilterOnly
|
|
UPDATE ingestion_pipeline_entity
|
|
SET json = json::jsonb #- '{sourceConfig,config,markDeletedTablesFromFilterOnly}';
|
|
|
|
UPDATE data_insight_chart
|
|
SET json = jsonb_set(
|
|
json,
|
|
'{dimensions}',
|
|
'[{"name":"entityFqn","chartDataType":"STRING"},{"name":"entityType","chartDataType":"STRING"},{"name":"owner","chartDataType":"STRING"},{"name":"entityHref","chartDataType":"STRING"}]'
|
|
)
|
|
WHERE name = 'mostViewedEntities'; |