mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-09 18:21:23 +00:00
7 lines
280 B
MySQL
7 lines
280 B
MySQL
![]() |
-- 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())
|
||
|
);
|