[hibernate-issues] [Hibernate-JIRA] Commented: (HSEARCH-56) Updating a collection does not reindex

Paco Avila (JIRA) noreply at atlassian.com
Wed Nov 30 13:17:20 EST 2011


    [ http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-56?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=44476#comment-44476 ] 

Paco Avila commented on HSEARCH-56:
-----------------------------------

I'm not sure if this bug is really fixed because I can reproduce it with hibernate-core 3.6.8.Final and hibernate-search 3.4.1.Final:

session = HibernateUtil.getSessionFactory().openSession();
tx = session.beginTransaction();
Node node = (Node) session.load(Node.class, uuid);

if (!node.getKeywords().contains(keyword)) {
   node.getKeywords().add(keyword);
}

session.update(node);
HibernateUtil.commit(tx);

> Updating a collection does not reindex
> --------------------------------------
>
>                 Key: HSEARCH-56
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-56
>             Project: Hibernate Search
>          Issue Type: Bug
>          Components: engine
>    Affects Versions: 3.0.0.beta1
>            Reporter: Emmanuel Bernard
>             Fix For: 3.0.1.GA
>
>


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list