mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-10 16:25:37 +00:00

* feat: databricks oauth and azure ad auth setup * refactor: add auth type changes in databricks.md * fix: test after oauth changes * refactor: unity catalog connection to databricks connection code * feat: added oauth and azure ad for unity catalog * fix: unitycatalog tests, doc & required type in connection.json * fix: generated tx files * fix: exporter databricksConnection file * refactor: unitycatalog example file * fix: usage example files * fix: unity catalog sqlalchemy connection * fix: unity catalog client headers * refactor: make common auth.py for dbx and unitycatalog * fix: auth functions import * fix: test unity catalog tags as None * fix: type hinting and sql migration * fix: migration for postgres
8 lines
487 B
SQL
8 lines
487 B
SQL
-- If you upgraded to 1.9.8 with the initial migration and then upgraded to 1.9.9
|
|
-- `'profileData', pdts.json` `pdts.json` will have the profileData in the json field
|
|
-- you will hence have performed the same migration again. This brings the json
|
|
-- `profileData`field back to the original state.
|
|
UPDATE profiler_data_time_series
|
|
SET json = jsonb_set(json::jsonb, '{profileData}', json::jsonb->'profileData'->'profileData')::json
|
|
WHERE json->'profileData'->>'profileData' IS NOT NULL;
|