Skip to content

Commit

Permalink
Fix countunique
Browse files Browse the repository at this point in the history
  • Loading branch information
manosetro committed May 5, 2017
1 parent e94655d commit 729870c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ else if(operator.isOr()) {

if(operator.hasModifier("countunique")) {
Modifier modifier = operator.getModifier("countunique");
if(modifier.isComparitorLT() || modifier.isComparitorLTE()) {
if(modifier.isComparitorGT() || modifier.isComparitorGTE()) {
booleanQb.minimumShouldMatch(modifier.getValue());
}
}
Expand Down

0 comments on commit 729870c

Please sign in to comment.