OpenMetadata/bootstrap/sql/migrations/native/1.11.6/postgres/schemaChanges.sql
harshsoni2024 44740ad5c5
Fix: remove overrideLineage config from database service metadata pipeline (#25379)
* remove overrideLineage from db metadata pipeline

* Update generated TypeScript types

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Mayur Singal <39544459+ulixius9@users.noreply.github.com>
2026-01-20 09:08:26 +05:30

4 lines
229 B
SQL

-- Remove overrideLineage from DatabaseMetadata pipeline config
UPDATE ingestion_pipeline_entity
SET json = json::jsonb #- '{sourceConfig,config,overrideLineage}'
WHERE json #>> '{sourceConfig,config,type}' = 'DatabaseMetadata';