OpenMetadata/bootstrap/sql/migrations/native/1.12.4/postgres/postDataMigrationSQLScript.sql
2026-03-20 09:41:15 +00:00

5 lines
269 B
SQL

UPDATE ingestion_pipeline_entity
SET json = (json::jsonb #- '{sourceConfig,config,threadCount}')::json
WHERE pipelineType = 'profiler'
AND json->'sourceConfig'->'config'->>'threadCount' IS NOT NULL
AND (json->'sourceConfig'->'config'->>'threadCount')::numeric = 5;