[ https://issues.apache.org/jira/browse/GEODE-2961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16023686#comment-16023686 ]
ASF GitHub Bot commented on GEODE-2961: --------------------------------------- Github user DivineEnder closed the pull request at: https://github.com/apache/geode/pull/527 > Distinct query with an or condition may miss results > ---------------------------------------------------- > > Key: GEODE-2961 > URL: https://issues.apache.org/jira/browse/GEODE-2961 > Project: Geode > Issue Type: Bug > Components: querying > Reporter: Jason Huynh > Assignee: David Anuta > > Sample query where this may be an issue: > "select id from /region where r.status in set('active') or r.name in > set('joe')" > The results will contain only one of the predicates. > The issue might be: > {noformat} > } else if (isDistinct && !isConditioningNeeded) { > intermediateResults = filterResults; > {noformat} > but it should probably read as: > {noformat} > } else if (isDistinct && !isConditioningNeeded) { > intermediateResults.addAll(filterResults); > {noformat} -- This message was sent by Atlassian JIRA (v6.3.15#6346)