mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
5 lines
198 B
MySQL
5 lines
198 B
MySQL
|
|
UPDATE ingestion_pipeline_entity
|
||
|
|
SET json = JSON_REMOVE(json, '$.sourceConfig.config.threadCount')
|
||
|
|
WHERE pipelineType = 'profiler'
|
||
|
|
AND JSON_EXTRACT(json, '$.sourceConfig.config.threadCount') = 5;
|