You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by "Nikita Timofeev (JIRA)" <ji...@apache.org> on 2018/07/23 14:43:00 UTC

[jira] [Assigned] (CAY-2445) Oracle: Problem with ExpressionFactory.notInExp()

     [ https://issues.apache.org/jira/browse/CAY-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nikita Timofeev reassigned CAY-2445:
------------------------------------

    Assignee: Nikita Timofeev

> Oracle: Problem with ExpressionFactory.notInExp()
> -------------------------------------------------
>
>                 Key: CAY-2445
>                 URL: https://issues.apache.org/jira/browse/CAY-2445
>             Project: Cayenne
>          Issue Type: Bug
>          Components: Core Library
>    Affects Versions: 3.1.2, 4.0.RC1, 4.1.M2
>            Reporter: Vladimir Zhilin
>            Assignee: Nikita Timofeev
>            Priority: Major
>             Fix For: 4.0.RC2, 4.2.M1
>
>         Attachments: stacktrace.txt
>
>
> When collection in notInExp() contains more than 1000 items, the ExpressionException is thrown:
> {code:java}
> org.apache.cayenne.exp.ExpressionException: [v.3.1.2 Nov 13 2017 07:52:36] Or: invalid parent - Negate
> at org.apache.cayenne.exp.parser.AggregateConditionNode.jjtSetParent(AggregateConditionNode.java:80)
> at org.apache.cayenne.exp.parser.SimpleNode.connectChildren(SimpleNode.java:324)
> ...{code}
> Code to reproduce the problem
> {code:java}
> SelectQuery query = new SelectQuery(Artist.class);
> List<Integer> excluded = new ArrayList<Integer>();
> for (int i = 0; i < 1001; ++i) {
>  excluded.add(i);
> }
> query.andQualifier(ExpressionFactory.notInExp(Artist.ID_PK_COLUMN, excluded));
> getContext().performQuery(query); {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)