mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-06 16:47:29 +00:00
17 lines
865 B
SQL
17 lines
865 B
SQL
UPDATE workflow_definition_entity
|
|
SET json = json - 'type'
|
|
WHERE json->>'type' IS NOT NULL;
|
|
|
|
-- Query Cost History Time Series
|
|
CREATE TABLE query_cost_time_series (
|
|
id varchar(36) GENERATED ALWAYS AS (json ->> 'id') STORED NOT NULL,
|
|
cost real GENERATED ALWAYS AS (json ->> 'cost') STORED NOT NULL,
|
|
count int GENERATED ALWAYS AS (json ->> 'count') STORED NOT NULL,
|
|
timestamp bigint GENERATED ALWAYS AS ((json ->> 'timestamp')::bigint) STORED NOT NULL,
|
|
jsonSchema varchar(256) NOT NULL,
|
|
json jsonb NOT NULL,
|
|
entityFQNHash varchar(768) COLLATE "C" DEFAULT NULL,
|
|
CONSTRAINT query_cost_unique_constraint UNIQUE (id, timestamp, entityFQNHash)
|
|
);
|
|
CREATE INDEX IF NOT EXISTS query_cost_time_series_id on query_cost_time_series (id);
|
|
CREATE INDEX IF NOT EXISTS query_cost_time_series_id_timestamp on test_case_resolution_status_time_series (id, timestamp); |