You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Thomas Mueller (JIRA)" <ji...@apache.org> on 2010/03/11 16:23:27 UTC

[jira] Resolved: (JCR-2564) SQL2 query: QOMFormatter create incorrect NOT conditions

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

Thomas Mueller resolved JCR-2564.
---------------------------------

       Resolution: Fixed
    Fix Version/s: 2.0.1

> SQL2 query: QOMFormatter create incorrect NOT conditions
> --------------------------------------------------------
>
>                 Key: JCR-2564
>                 URL: https://issues.apache.org/jira/browse/JCR-2564
>             Project: Jackrabbit Content Repository
>          Issue Type: Bug
>          Components: jackrabbit-jcr-commons
>            Reporter: Thomas Mueller
>            Assignee: Thomas Mueller
>             Fix For: 2.0.1
>
>
> Then the following query is parsed:
> SELECT test.* FROM test WHERE (NOT test.name = 'Hello') AND test.id = 3
> then the SQL statement generated, it becomes:
> SELECT test.* FROM test WHERE NOT test.name = 'Hello' AND test.id = 3
> which is parsed differently and becomes:
> SELECT test.* FROM test WHERE NOT (test.name = 'Hello' AND test.id = 3)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.