mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-09 18:21:23 +00:00

* fix: added provider for testDefinition entities * fix: changed testDefinition <-> testCase relationship + allow recursive deletion of testDefinition * fix: added migration steps * style: ran java linting
14 lines
544 B
SQL
14 lines
544 B
SQL
-- Update the relation between testDefinition and testCase to 0 (CONTAINS)
|
|
UPDATE entity_relationship
|
|
SET relation = 0
|
|
WHERE fromEntity = 'testDefinition' AND toEntity = 'testCase' AND relation != 0;
|
|
|
|
-- Update the test definition provider
|
|
-- If the test definition has OpenMetadata as a test platform, then the provider is system, else it is user
|
|
UPDATE test_definition
|
|
SET json =
|
|
case
|
|
when json->'testPlatforms' @> '"OpenMetadata"' then jsonb_set(json,'{provider}','"system"',true)
|
|
else jsonb_set(json,'{provider}','"user"', true)
|
|
end;
|