2024-09-24 12:55:10 +02:00
|
|
|
-- Delete data quality records with no linked test case FQN in the test_case table
|
|
|
|
DELETE dqdts
|
|
|
|
FROM data_quality_data_time_series dqdts
|
|
|
|
LEFT JOIN test_case tc ON dqdts.entityFQNHash = tc.fqnHash
|
|
|
|
WHERE tc.fqnHash IS NULL;
|
|
|
|
|
2024-09-09 07:58:45 +02:00
|
|
|
-- 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())
|
2024-09-12 08:13:41 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
-- 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
|
2024-09-18 11:58:59 +02:00
|
|
|
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;
|
2024-09-25 12:15:26 +02:00
|
|
|
|
|
|
|
UPDATE test_case SET json = JSON_SET(json, '$.testCaseStatus', JSON_EXTRACT(json, '$.testCaseResult.testCaseStatus'))
|
|
|
|
WHERE JSON_EXTRACT(json, '$.testCaseResult.testCaseStatus') IS NOT NULL;
|
|
|
|
|
2024-09-18 11:58:59 +02:00
|
|
|
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
|
2024-09-25 18:29:32 +05:30
|
|
|
SET json = JSON_REMOVE(json, '$.testCaseResult');
|
|
|
|
|
|
|
|
-- Add Supports interrupts to SearchIndexingApplication
|
|
|
|
UPDATE installed_apps SET json = JSON_SET(json, '$.supportsInterrupt', true) where name = 'SearchIndexingApplication';
|
|
|
|
UPDATE apps_marketplace SET json = JSON_SET(json, '$.supportsInterrupt', true) where name = 'SearchIndexingApplication';
|
|
|
|
|
2024-10-16 11:07:31 +02:00
|
|
|
-- Add supportsDataDiff for Athena, BigQuery, Mssql, Mysql, Oracle, Postgres, Redshift, SapHana, Snowflake, Trino
|
|
|
|
UPDATE dbservice_entity
|
|
|
|
SET json = JSON_SET(json, '$.connection.config.supportsDataDiff', 'true')
|
|
|
|
WHERE serviceType IN ('Athena','BigQuery','Mssql','Mysql','Oracle','Postgres','Redshift','SapHana','Snowflake','Trino');
|
2024-10-22 07:39:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
-- Add supportsSystemProfile for Snowflake, Redshift, and BigQuery
|
|
|
|
update dbservice_entity
|
|
|
|
set json = JSON_SET(json, '$.connection.config.supportsSystemProfile', true)
|
|
|
|
where serviceType in ('Snowflake', 'Redshift', 'BigQuery');
|
2024-10-31 00:25:51 +05:30
|
|
|
|
|
|
|
-- Update all rows in the consumers_dlq table to set the source column to 'publisher'
|
2024-12-04 16:56:21 +05:30
|
|
|
UPDATE consumers_dlq SET source = 'publisher';
|
|
|
|
|
|
|
|
DELETE from event_subscription_entity where name = "ActivityFeedAlert";
|