Skip to content

Commit

Permalink
added 121 migration (#13837)
Browse files Browse the repository at this point in the history
  • Loading branch information
OnkarVO7 committed Nov 6, 2023
1 parent 63d5511 commit e4ef927
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
Empty file.
Empty file.
Empty file.
11 changes: 11 additions & 0 deletions bootstrap/sql/migrations/native/1.2.1/postgres/schemaChanges.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

--fixed Query for updating viewParsingTimeoutLimit
UPDATE ingestion_pipeline_entity
SET json = jsonb_set(
json::jsonb #- '{sourceConfig,config,viewParsingTimeoutLimit}',
'{sourceConfig,config,queryParsingTimeoutLimit}',
(json #> '{sourceConfig,config,viewParsingTimeoutLimit}')::jsonb,
true
)
WHERE json #>> '{pipelineType}' = 'metadata'
AND json #>> '{sourceConfig,config,type}' = 'DatabaseMetadata';

0 comments on commit e4ef927

Please sign in to comment.