mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
5 lines
229 B
MySQL
5 lines
229 B
MySQL
|
|
-- Remove overrideLineage from DatabaseMetadata pipeline config
|
||
|
|
UPDATE ingestion_pipeline_entity
|
||
|
|
SET json = json::jsonb #- '{sourceConfig,config,overrideLineage}'
|
||
|
|
WHERE json #>> '{sourceConfig,config,type}' = 'DatabaseMetadata';
|