mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-08 01:29:37 +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
33 lines
1.2 KiB
SQL
33 lines
1.2 KiB
SQL
-- Add FQN and UUID to data_quality_data_time_series records
|
|
UPDATE data_quality_data_time_series dqdts
|
|
SET json = jsonb_set(
|
|
jsonb_set(dqdts.json::jsonb, '{testCaseFQN}', tc.json->'fullyQualifiedName'),
|
|
'{id}', to_jsonb(gen_random_uuid())
|
|
)
|
|
FROM test_case tc
|
|
WHERE dqdts.entityfqnHash = tc.fqnHash;
|
|
|
|
|
|
-- 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,
|
|
ADD CONSTRAINT id_unique UNIQUE (id);
|
|
|
|
-- Create index on id column
|
|
CREATE INDEX IF NOT EXISTS 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 = jsonb_set(json, '{testCaseStatus}', json->'testCaseResult'->'testCaseStatus');
|
|
ALTER TABLE test_case ADD COLUMN status VARCHAR(56) GENERATED ALWAYS AS (json ->> 'testCaseStatus') STORED NULL;
|
|
|
|
|
|
-- Remove test case result states
|
|
UPDATE test_suite
|
|
SET json = json - 'testCaseResultSummary';
|
|
|
|
UPDATE test_case
|
|
SET json = json - 'testCaseResult';
|