fix: comment in sql migration (#13979)

This commit is contained in:
Teddy 2023-11-15 10:32:11 +01:00 committed by GitHub
parent c289dd4e2c
commit 81242d6cb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
--update the timestamps to millis for dbt test results
-- update the timestamps to millis for dbt test results
UPDATE data_quality_data_time_series dqdts
SET dqdts.json = JSON_INSERT(
JSON_REMOVE(dqdts.json, '$.timestamp'),

View File

@ -1,5 +1,5 @@
--fixed Query for updating viewParsingTimeoutLimit
-- fixed Query for updating viewParsingTimeoutLimit
UPDATE ingestion_pipeline_entity
SET json = jsonb_set(
json::jsonb #- '{sourceConfig,config,viewParsingTimeoutLimit}',
@ -11,7 +11,7 @@ WHERE json #>> '{pipelineType}' = 'metadata'
AND json #>> '{sourceConfig,config,type}' = 'DatabaseMetadata';
--update the timestamps to millis for dbt test results
-- update the timestamps to millis for dbt test results
UPDATE data_quality_data_time_series dqdts
SET json = jsonb_set(
dqdts.json::jsonb,