Skip to content

Commit

Permalink
Add appType as part of schema in ingestion pipeline (#16519)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshach authored and pmbrull committed Jun 5, 2024
1 parent 14235c8 commit aa0a5ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE ingestion_pipeline_entity ADD COLUMN appType VARCHAR(256) GENERATED ALWAYS AS (json ->> '$.sourceConfig.config.appConfig.type') STORED NULL;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE ingestion_pipeline_entity ADD COLUMN appType VARCHAR(256) GENERATED ALWAYS AS (json -> 'sourceConfig' -> 'config' -> 'appConfig' ->> 'type') STORED NULL;

0 comments on commit aa0a5ca

Please sign in to comment.