Skip to content

Commit

Permalink
DT-829 fixing upper case search (#8601)
Browse files Browse the repository at this point in the history
[DT-829][risk=no] fixing variant search bug
  • Loading branch information
freemabd authored Jun 12, 2024
1 parent 9278390 commit ed32818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"vid": "1-101504524-G-A",
"gene_symbol": "GENE"
"gene_symbol": "gene"
},
{
"vid": "1-101504524-G-A",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ WHERE vid IN (
WHERE vid IN (
SELECT vid
FROM `${projectId}.${dataSetId}.cb_variant_attribute_genes`
WHERE gene_symbol = @singleGene
WHERE UPPER(gene_symbol) = @singleGene
)
""";

Expand Down

0 comments on commit ed32818

Please sign in to comment.