mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
* FIX - Redshift converter (#26229)
(cherry picked from commit ce8e1e5b5b)
* chore: move 2.0 migration to 1.13.0
---------
Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
4 lines
217 B
SQL
4 lines
217 B
SQL
UPDATE ingestion_pipeline_entity
|
|
SET json = (json::jsonb #- '{sourceConfig,config,computeMetrics}')::json
|
|
WHERE json::jsonb -> 'sourceConfig' -> 'config' -> 'computeMetrics' IS NOT NULL
|
|
AND pipelineType = 'profiler';
|