Skip to content

Commit

Permalink
[ALS-7384] Fix consent null check
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sikina committed Sep 24, 2024
1 parent 6aaed7b commit 8d80556
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public List<Map<String, String>> getHackyBDCRows() {
END
AS samples,
CASE
WHEN consent.consent_code <> NULL THEN concat(study_accession_meta.value, '.', consent.consent_code)
WHEN consent.consent_code IS NOT NULL THEN concat(study_accession_meta.value, '.', consent.consent_code)
ELSE study_accession_meta.value
END
AS accession,
Expand Down

0 comments on commit 8d80556

Please sign in to comment.