mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
6 lines
269 B
MySQL
6 lines
269 B
MySQL
|
|
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;
|