mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
* feat(metric default): move profiler and dq to obs folder * feat(metric default): validate metric registry and schema * feat(metric default): map metric type name to enum name * feat(metric default): updated default metrics in profiler * feat(metric default): migration to remove computeMetrics setting * feat(metric default): fix CI failures * feat(metric default): fix CI failures * fix ci failures * fix ci failures * fix typo in psql migration query * fix psql migration query * fix ci failure * fix: CI failures
5 lines
211 B
SQL
5 lines
211 B
SQL
UPDATE ingestion_pipeline_entity
|
|
SET json = JSON_REMOVE(json, '$.sourceConfig.config.computeMetrics')
|
|
WHERE JSON_EXTRACT(json, '$.sourceConfig.config.computeMetrics') IS NOT NULL
|
|
AND pipelineType = 'profiler';
|
|
|