[hibernate-issues] [Hibernate-JIRA] Created: (HSEARCH-76) Lazy loaded property isn't indexed properly

Christian Bauer (JIRA) noreply at atlassian.com
Tue Jun 12 03:09:04 EDT 2007


Lazy loaded property isn't indexed properly
-------------------------------------------

                 Key: HSEARCH-76
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-76
             Project: Hibernate Search
          Issue Type: Bug
          Components: engine
    Affects Versions: 3.0.0.beta3
            Reporter: Christian Bauer


    @Column(name = "CONTENT")
    @Length(min = 0, max = 32768)
    @Basic(fetch = FetchType.LAZY) // Lazy loaded through bytecode instrumentation
    @org.hibernate.search.annotations.Field(index = org.hibernate.search.annotations.Index.TOKENIZED)
    private String content;

I use fulltextSession.index(o) and I only get two terms indexed "text" and "edit". I don't know where these are coming from actually, no object has these content values.

If I trigger an o.getContent() before fulltextSession.index(o), the content is loaded with sequential selects for the lazy property and correctly indexed.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the hibernate-issues mailing list