[infinispan-issues] [JBoss JIRA] (ISPN-4654) AND over range queries does not work (indexless query)

Gustavo Fernandes (JIRA) issues at jboss.org
Mon Sep 1 09:33:59 EDT 2014


     [ https://issues.jboss.org/browse/ISPN-4654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gustavo Fernandes updated ISPN-4654:
------------------------------------
        Status: Resolved  (was: Pull Request Sent)
    Resolution: Done


> AND over range queries does not work (indexless query)
> ------------------------------------------------------
>
>                 Key: ISPN-4654
>                 URL: https://issues.jboss.org/browse/ISPN-4654
>             Project: Infinispan
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: Embedded Querying, Remote Querying
>    Affects Versions: 6.0.2.Final, 7.0.0.Beta1
>            Reporter: Radim Vansa
>            Assignee: Adrian Nistor
>
> Check this in QueryDslConditionsTest:
> {code}
>    public void testAnd5() throws Exception {
>       QueryFactory qf = getQueryFactory();
>       // range queries use different code
>       Query q = qf.from(getModelFactory().getUserImplClass())
>             .having("id").lt(1000)
>             .and().having("age").lt(1000)
>             .toBuilder().build();
>       List<User> list = q.list();
>       assertEquals(3, list.size());
>    }
> {code}
> The problem is that some subscription gets suspended and the second LT does not fire the second predicate update (and then neither the AND reevaluation).



--
This message was sent by Atlassian JIRA
(v6.3.1#6329)


More information about the infinispan-issues mailing list