You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Alex Parvulescu (JIRA)" <ji...@apache.org> on 2012/06/06 15:01:23 UTC

[jira] [Updated] (JCR-3050) NullPointerException on removing a node acquired from search result

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

Alex Parvulescu updated JCR-3050:
---------------------------------

    Fix Version/s: 2.4.2
         Assignee: Alex Parvulescu
    
> NullPointerException on removing a node acquired from search result
> -------------------------------------------------------------------
>
>                 Key: JCR-3050
>                 URL: https://issues.apache.org/jira/browse/JCR-3050
>             Project: Jackrabbit Content Repository
>          Issue Type: Bug
>          Components: jackrabbit-jcr2spi
>            Reporter: David Buchmann
>            Assignee: Alex Parvulescu
>             Fix For: 2.4.2, 2.5
>
>
> with a code snipped like the following, i get a NullPointerException in ItemState:
> Session s = repo.login(sc,workspace);
> QueryManager qm = s.getWorkspace().getQueryManager();
> Query q = qm.createQuery("SELECT * FROM [nt:unstructured]", Query.JCR_SQL2);
> QueryResult r = q.execute();
> NodeIterator i = r.getNodes();
> Node n = i.nextNode();
> n.remove(); // breaks here with NullPointerException
> Exception in thread "main" java.lang.NullPointerException                                                                                                                                                                                   
>         at org.apache.jackrabbit.jcr2spi.state.ItemState.getParent(ItemState.java:210)                                                                                                                                                      
>         at org.apache.jackrabbit.jcr2spi.operation.Remove.create(Remove.java:98)                                                                                                                                                            
>         at org.apache.jackrabbit.jcr2spi.ItemImpl.remove(ItemImpl.java:306) 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira