-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sql schema changes in another flyway version.
- Loading branch information
1 parent
db46d48
commit 4d0d5d9
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
backend/src/main/resources/db/migration/V1.2__update_view.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
drop view if exists external_metadata_view cascade; | ||
|
||
create view external_metadata_view as | ||
select | ||
sequence_entries_preprocessed_data.accession, | ||
sequence_entries_preprocessed_data.version, | ||
all_external_metadata.updated_metadata_at, | ||
-- || concatenates two JSON objects by generating an object containing the union of their keys | ||
-- taking the second object's value when there are duplicate keys. | ||
case | ||
when all_external_metadata.external_metadata is null then jsonb_build_object('metadata', (sequence_entries_preprocessed_data.processed_data->'metadata')) | ||
else jsonb_build_object('metadata', (sequence_entries_preprocessed_data.processed_data->'metadata') || all_external_metadata.external_metadata) | ||
end as joint_metadata | ||
from | ||
sequence_entries_preprocessed_data | ||
left join all_external_metadata on | ||
all_external_metadata.accession = sequence_entries_preprocessed_data.accession | ||
and all_external_metadata.version = sequence_entries_preprocessed_data.version | ||
and sequence_entries_preprocessed_data.pipeline_version = (select version from current_processing_pipeline); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters