mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-08 09:39:02 +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 * chore: extracted test case results to its own resource * chore: fix failing tests * chore: move testCaseResult state from testSuite and testCase to dynamic field fetched from test case results search index * chore: clean up test case repository * style: ran java linting * chore: removed testCaseResultSummary and testCaseResult state from db * fix: test failures * chore: fix index mapping type for result value * chore: fix test failure
30 lines
1.2 KiB
SQL
30 lines
1.2 KiB
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())
|
|
);
|
|
|
|
-- Add id column to data_quality_data_time_series table
|
|
-- after we have added the id values to the records
|
|
ALTER TABLE data_quality_data_time_series
|
|
ADD COLUMN id VARCHAR(36) GENERATED ALWAYS AS (json ->> '$.id') STORED NOT NULL,
|
|
ADD CONSTRAINT UNIQUE (id);
|
|
|
|
-- Create index on id column
|
|
CREATE INDEX data_quality_data_time_series_id_index ON data_quality_data_time_series (id);
|
|
|
|
-- Remove VIRTUAL status column from test_case table and remove
|
|
-- testCaseResult state from testCase; fetch from search repo.
|
|
ALTER TABLE test_case DROP COLUMN status;
|
|
UPDATE test_case SET json = JSON_SET(json, '$.testCaseStatus', JSON_EXTRACT(json, '$.testCaseResult.testCaseStatus'));
|
|
ALTER TABLE test_case ADD COLUMN status VARCHAR(56) GENERATED ALWAYS AS (JSON_UNQUOTE(JSON_EXTRACT(json, '$.testCaseStatus'))) STORED;
|
|
|
|
|
|
-- Remove test case result states
|
|
UPDATE test_suite
|
|
SET json = JSON_REMOVE(json, '$.testCaseResultSummary');
|
|
|
|
UPDATE test_case
|
|
SET json = JSON_REMOVE(json, '$.testCaseResult'); |