Skip to content

Commit

Permalink
Issue #1409 - use EQ operator for CODE_SYSTEM_ID column
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Schroeder <mschroed@us.ibm.com>
  • Loading branch information
michaelwschroeder committed May 10, 2021
1 parent 87c5c95 commit 9de0c34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ protected WhereFragment getTokenFilter(QueryParameter queryParm, String paramAli

// Filter on the code system for the given parameter
Integer codeSystemId = identityCache.getCodeSystemId(system);
where.col(paramAlias, CODE_SYSTEM_ID).operator(operator).literal(nullCheck(codeSystemId));
where.col(paramAlias, CODE_SYSTEM_ID).eq().literal(nullCheck(codeSystemId));
}
}
}
Expand Down

0 comments on commit 9de0c34

Please sign in to comment.