mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-08 17:50:28 +00:00

* feat: indexed test case results * feat: added indexation logic for test case results * style: ran java linting * fix: IDE warnigns * chore: added test case results migration * style: ran java linting * fix: postgres migration column json ref * empty commit to trigger queued * fix: added index on id field
7 lines
280 B
SQL
7 lines
280 B
SQL
-- Add FQN and UUID to data_quality_data_time_series records
|
|
UPDATE data_quality_data_time_series dqdts
|
|
INNER JOIN test_case tc ON dqdts.entityFQNHash = tc.fqnHash
|
|
SET dqdts.json = JSON_SET(dqdts.json,
|
|
'$.testCaseFQN', tc.json->'$.fullyQualifiedName',
|
|
'$.id', (SELECT UUID())
|
|
); |