Skip to content

Commit

Permalink
fixes missing filter, closes #702 (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
fdefalco authored and anthonysena committed Dec 3, 2018
1 parent 1ee4b7f commit c39abe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -16,4 +16,5 @@ INNER JOIN
@vocab_database_schema.concept c2
ON CAST(ard1.stratum_2 AS INT) = c2.concept_id
WHERE ard1.analysis_id = 906
AND ard1.count_value > 0
AND ard1.count_value > 0
AND c1.concept_id = @conceptId
Expand Up @@ -13,4 +13,5 @@ INNER JOIN
@vocab_database_schema.concept c1
ON CAST(ard1.stratum_1 AS INT) = c1.concept_id
WHERE ard1.analysis_id = 907
AND ard1.count_value > 0
AND ard1.count_value > 0
AND c1.concept_id = @conceptId

0 comments on commit c39abe8

Please sign in to comment.