[Hibernate-JIRA] Created: (HHH-3008) Cascade delete does not work with unidirectional @OneToMany and @JoinTable
by Daniel Dyer (JIRA)
Cascade delete does not work with unidirectional @OneToMany and @JoinTable
--------------------------------------------------------------------------
Key: HHH-3008
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3008
Project: Hibernate3
Issue Type: Bug
Affects Versions: 3.2.5
Environment: Standalone entity manager (JavaSE 5.0).
H2 database.
Reporter: Daniel Dyer
A unidirectional one-to-many relationship defined as follows:
public class Owner
{
@OneToMany(cascade = CascadeType.ALL)
@JoinTable(name = "owner_element",
joinColumns = @JoinColumn(name = "owner_id",
nullable = false,
updatable = false),
inverseJoinColumns = @JoinColumn(name = "element_id",
nullable = false,
updatable = false))
private List<Element> elements;
// ...
}
Attempting to delete an instance of Owner should also delete all associated instances of Element. Instead I get the following error:
SEVERE: Referential integrity constraint violation: FK56BBF9C487E817D: PUBLIC.OWNER_ELEMENT FOREIGN KEY(OWNER_ID) REFERENCES PUBLIC.OWNER(ID) [23003-63]
This is because Hibernate attempts to delete the Owner row without first removing the rows from the join table.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years
[Hibernate-JIRA] Created: (HHH-4073) discriminator formula creates problem in hibernate envers
by Saravana Kumar (JIRA)
discriminator formula creates problem in hibernate envers
---------------------------------------------------------
Key: HHH-4073
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-4073
Project: Hibernate Core
Issue Type: Bug
Components: envers
Affects Versions: 3.3.x
Environment: hibernate-3.3.x, envers-1.2.1.ga-hibernate-3.3.jar (Oracle 10g or HSQLDB)
Reporter: Saravana Kumar
I map my classes using Single Table per class hierarchy as below
@Entity
@DiscriminatorFormula ("(select t.c_type from t_type t where t.c_id = c_type)")
@Audited
public class Attribute...{
...
}
or
<discriminator type="string">
<formula>(select t.c_type from t_type t where t.c_id = c_type)</formula>
</discriminator>
When I use envers
I get the follwoing error
Caused by: java.lang.ClassCastException: org.hibernate.mapping.Formula
at org.hibernate.envers.configuration.metadata.MetadataTools.addColumns(MetadataTools.java:154)
at org.hibernate.envers.configuration.metadata.AuditMetadataGenerator.generateMappingData(AuditMetadataGenerator.java:263)
at org.hibernate.envers.configuration.metadata.AuditMetadataGenerator.generateFirstPass(AuditMetadataGenerator.java:345)
at org.hibernate.envers.configuration.EntitiesConfigurator.configure(EntitiesConfigurator.java:87)
at org.hibernate.envers.configuration.AuditConfiguration.(AuditConfiguration.java:86)
at org.hibernate.envers.configuration.AuditConfiguration.getFor(AuditConfiguration.java:99)
at org.hibernate.envers.event.AuditEventListener.initialize(AuditEventListener.java:260)
at org.hibernate.event.EventListeners$1.processListener(EventListeners.java:198)
at org.hibernate.event.EventListeners.processListeners(EventListeners.java:181)
at org.hibernate.event.EventListeners.initializeListeners(EventListeners.java:194)
When I tried to debug the problem
(AuditMetadataGenerator.java:263) has
260: // Checking if there is a discriminator column
261: if (hasDiscriminator) {
262: Element discriminator_element = class_mapping.addElement("discriminator");
263: MetadataTools.addColumns(discriminator_element, pc.getDiscriminator().getColumnIterator());
264: discriminator_element.addAttribute("type", pc.getDiscriminator().getType().getName());
265: }
(MetadataTools.java:154) has
152: public static void addColumns(Element any_mapping, Iterator<Column> columns) {
153: while (columns.hasNext()) {
154: Column column = columns.next();
155: addColumn(any_mapping, column.getName(), column.getLength(), column.getScale(), column.getPrecision(),
156: column.getSqlType());
157: }
158: }
I see that there is nothing to handle Formula :-(
Can you investigate?
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years
[Hibernate-JIRA] Created: (HHH-3359) Loader leaks memory when ResultSet wrapping is enabled
by Frans Flippo (JIRA)
Loader leaks memory when ResultSet wrapping is enabled
------------------------------------------------------
Key: HHH-3359
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3359
Project: Hibernate3
Issue Type: Bug
Components: core
Affects Versions: 3.3.0.CR1, 3.2.6
Environment: Hibernate 3.2.6 GA, Oracle 10g database, Oracle JDBC drivers 10.2.0.1.0 for JDK14
Reporter: Frans Flippo
Priority: Minor
Attachments: ResultSetWrapper.java
This issue was already reported on the forums (http://forum.hibernate.org/viewtopic.php?t=968578), but I can find no actual JIRA entry. The issue is that when the hibernate.jdbc.wrap_result_sets property is set to true, ResultSets are never removed from the AbstractBatcher's resultSetsToClose set, eventually causing memory to fill up with ResultSet objects and their associated resources (like PreparedStatements).
This issue was witnessed in 3.2.6, but a look at the 3.3 CR1 source code reveals that it's still in there.
What happens:
1) org.hibernate.loader.Loader.doQuery calls org.hibernate.loader.Loader.getResultSet
2) org.hibernate.loader.Loader.getResultSet calls Batcher.getResultSet. The AbstractBatcher implementation creates a ResultSet by executing the query and adds it to the AbstractBatcher's resultSetsToClose Set
3) Loader then calls its wrapResultSetIfEnabled method to wraps the ResultSet in a ResultSetWrapper if the wrap_result_sets option is enabled.
4) In Loader.doQuery's finally block, Batcher.closeQueryStatement is called with the PreparedStatement and the *wrapped* ResultSet as parameters
5) closeQueryStatement does:
if ( resultSetsToClose.remove( rs ) ) {
logCloseResults();
rs.close();
}
6) resultSetsToClose.remove(rs) will always return false if the ResultSet was wrapped, as ResultSetWrapper does not override equals()/hashCode() (and therefore inherits Object's equals() and hashCode()). This means the reference to the original (unwrapped) ResultSet remains (is not removed from the Set) and the ResultSet is not closed either as a result.
Workaround: Set hibernate.jdbc.wrap_result_sets to false
Solution: implement ResultSetWrapper.equals()/hashCode() (see attached ResultSetWrapper.java)
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-3203) DerbyDialect Bug
by Bernd Farka (JIRA)
DerbyDialect Bug
----------------
Key: HHH-3203
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3203
Project: Hibernate3
Issue Type: Bug
Environment: Hibernate 3.2.6 GA, Vista, Current ApacheDerby, BEA Jrockit
Reporter: Bernd Farka
When i execute following Query
select sum(t.ammount) from Transaction t where t.bookingDate >= :from and t.bookingDate <= :until and t.account = :account"
Hibernate throws this Exception (on Mysql it works!)
2008-03-25 20:07:21,460 [Main Thread] DEBUG org.hibernate.util.JDBCExceptionReporter - could not execute query [select transactio0_.category_id as col_0_0_, sum(transactio0_.ammount) as col_1_0_, category1_.categoryId as categoryId2_, category1_.categroyName as categroy2_2_ from tbl_transactions transactio0_ inner join tbl_category category1_ on transactio0_.category_id=category1_.categoryId where transactio0_.bookingDate>=? and transactio0_.bookingDate<=? and transactio0_.account_id=? group by transactio0_.category_id]
java.sql.SQLException: The SELECT list of a grouped query contains at least one invalid expression. If a SELECT list has a GROUP BY, the list may only contain valid grouping expressions and valid aggregate expressions.
at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.ConnectionChild.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement.<init>(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement20.<init>(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement30.<init>(Unknown Source)
at org.apache.derby.jdbc.Driver30.newEmbedPreparedStatement(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(Unknown Source)
at org.hibernate.jdbc.AbstractBatcher.getPreparedStatement(AbstractBatcher.java:505)
at org.hibernate.jdbc.AbstractBatcher.getPreparedStatement(AbstractBatcher.java:423)
at org.hibernate.jdbc.AbstractBatcher.prepareQueryStatement(AbstractBatcher.java:139)
at org.hibernate.loader.Loader.prepareQueryStatement(Loader.java:1547)
at org.hibernate.loader.Loader.doQuery(Loader.java:673)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:236)
at org.hibernate.loader.Loader.doList(Loader.java:2213)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2104)
at org.hibernate.loader.Loader.list(Loader.java:2099)
at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:378)
at org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:338)
at org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:172)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1121)
at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
at org.farkarich.bankmanager.MainFrame.updateData(MainFrame.java:317)
at org.farkarich.bankmanager.MainFrame.<init>(MainFrame.java:342)
at org.farkarich.bankmanager.StartClass.main(StartClass.java:27)
Caused by: ERROR 42Y30: The SELECT list of a grouped query contains at least one invalid expression. If a SELECT list has a GROUP BY, the list may only contain valid grouping expressions and valid aggregate expressions.
at org.apache.derby.iapi.error.StandardException.newException(Unknown Source)
at org.apache.derby.impl.sql.compile.VerifyAggregateExpressionsVisitor.visit(Unknown Source)
at org.apache.derby.impl.sql.compile.QueryTreeNode.accept(Unknown Source)
at org.apache.derby.impl.sql.compile.ResultColumn.accept(Unknown Source)
at org.apache.derby.impl.sql.compile.QueryTreeNodeVector.accept(Unknown Source)
at org.apache.derby.impl.sql.compile.SelectNode.bindExpressions(Unknown Source)
at org.apache.derby.impl.sql.compile.DMLStatementNode.bindExpressions(Unknown Source)
at org.apache.derby.impl.sql.compile.DMLStatementNode.bind(Unknown Source)
at org.apache.derby.impl.sql.compile.CursorNode.bindStatement(Unknown Source)
at org.apache.derby.impl.sql.GenericStatement.prepMinion(Unknown Source)
at org.apache.derby.impl.sql.GenericStatement.prepare(Unknown Source)
at org.apache.derby.impl.sql.conn.GenericLanguageConnectionContext.prepareInternalStatement(Unknown Source)
... 23 more
2008-03-25 20:07:21,462 [Main Thread] WARN org.hibernate.util.JDBCExceptionReporter - SQL Error: 20000, SQLState: 42Y30
2008-03-25 20:07:21,462 [Main Thread] ERROR org.hibernate.util.JDBCExceptionReporter - The SELECT list of a grouped query contains at least one invalid expression. If a SELECT list has a GROUP BY, the list may only contain valid grouping expressions and valid aggregate expressions.
2008-03-25 20:07:21,465 [Main Thread] DEBUG org.hibernate.jdbc.JDBCContext - after autocommit
2008-03-25 20:07:21,465 [Main Thread] DEBUG org.hibernate.jdbc.ConnectionManager - aggressively releasing JDBC connection
2008-03-25 20:07:21,465 [Main Thread] DEBUG org.hibernate.jdbc.ConnectionManager - releasing JDBC connection [ (open PreparedStatements: 1, globally: 1) (open ResultSets: 0, globally: 0)]
2008-03-25 20:07:21,465 [Main Thread] DEBUG org.hibernate.connection.DriverManagerConnectionProvider - returning connection to pool, pool size: 1
Exception in thread "Main Thread" org.hibernate.exception.SQLGrammarException: could not execute query
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:67)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
at org.hibernate.loader.Loader.doList(Loader.java:2216)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2104)
at org.hibernate.loader.Loader.list(Loader.java:2099)
at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:378)
at org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:338)
at org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:172)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1121)
at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
at org.farkarich.bankmanager.MainFrame.updateData(MainFrame.java:317)
at org.farkarich.bankmanager.MainFrame.<init>(MainFrame.java:342)
at org.farkarich.bankmanager.StartClass.main(StartClass.java:27)
Caused by: java.sql.SQLException: The SELECT list of a grouped query contains at least one invalid expression. If a SELECT list has a GROUP BY, the list may only contain valid grouping expressions and valid aggregate expressions.
at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source)
at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.ConnectionChild.handleException(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement.<init>(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement20.<init>(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement30.<init>(Unknown Source)
at org.apache.derby.jdbc.Driver30.newEmbedPreparedStatement(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(Unknown Source)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(Unknown Source)
at org.hibernate.jdbc.AbstractBatcher.getPreparedStatement(AbstractBatcher.java:505)
at org.hibernate.jdbc.AbstractBatcher.getPreparedStatement(AbstractBatcher.java:423)
at org.hibernate.jdbc.AbstractBatcher.prepareQueryStatement(AbstractBatcher.java:139)
at org.hibernate.loader.Loader.prepareQueryStatement(Loader.java:1547)
at org.hibernate.loader.Loader.doQuery(Loader.java:673)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:236)
at org.hibernate.loader.Loader.doList(Loader.java:2213)
... 10 more
Caused by: ERROR 42Y30: The SELECT list of a grouped query contains at least one invalid expression. If a SELECT list has a GROUP BY, the list may only contain valid grouping expressions and valid aggregate expressions.
at org.apache.derby.iapi.error.StandardException.newException(Unknown Source)
at org.apache.derby.impl.sql.compile.VerifyAggregateExpressionsVisitor.visit(Unknown Source)
at org.apache.derby.impl.sql.compile.QueryTreeNode.accept(Unknown Source)
at org.apache.derby.impl.sql.compile.ResultColumn.accept(Unknown Source)
at org.apache.derby.impl.sql.compile.QueryTreeNodeVector.accept(Unknown Source)
at org.apache.derby.impl.sql.compile.SelectNode.bindExpressions(Unknown Source)
at org.apache.derby.impl.sql.compile.DMLStatementNode.bindExpressions(Unknown Source)
at org.apache.derby.impl.sql.compile.DMLStatementNode.bind(Unknown Source)
at org.apache.derby.impl.sql.compile.CursorNode.bindStatement(Unknown Source)
at org.apache.derby.impl.sql.GenericStatement.prepMinion(Unknown Source)
at org.apache.derby.impl.sql.GenericStatement.prepare(Unknown Source)
at org.apache.derby.impl.sql.conn.GenericLanguageConnectionContext.prepareInternalStatement(Unknown Source)
... 23 more
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-2960) Add Interceptor to the openSession method the CurrentSessionContexts use
by Shawn Clowater (JIRA)
Add Interceptor to the openSession method the CurrentSessionContexts use
------------------------------------------------------------------------
Key: HHH-2960
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2960
Project: Hibernate3
Issue Type: Improvement
Components: core
Affects Versions: 3.2.5
Reporter: Shawn Clowater
Priority: Minor
Ran into a minor snag earlier where I was rigging up the stateful audit interceptor and didn't have a clean hook to jack the interceptor for my current session.
The sample code illustrates the use of the interceptor by using the sessionFactory.openSession(Interceptor) method and then goes on to say with the wave of a hand that if you're using the getCurrentSession functionality that you'll have to override whatever CurrentSessionContext you're using. That's a little bit more cumbersome that I was hoping for but to make matters worse the method that the ThreadLocalCurrentSessionContext is using to obtain the session is:
public org.hibernate.classic.Session openSession(
final Connection connection,
final boolean flushBeforeCompletionEnabled,
final boolean autoCloseSessionEnabled,
final ConnectionReleaseMode connectionReleaseMode) throws HibernateException;
There are no other constructors that I can see that combine all of these parameters with the addition of an Interceptor parameter. It would be a nice to have if there were an overloaded method that accepted the addition of an Interceptor.
I worked around it for now but I am ashamed at the way I'm storing state for my interceptor.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-2640) Clob management and deadlock
by Samuel Emangard (JIRA)
Clob management and deadlock
----------------------------
Key: HHH-2640
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2640
Project: Hibernate3
Issue Type: Bug
Components: core
Affects Versions: 3.2.0.ga
Environment: JDK 1.5, Oracle 10g v2
Reporter: Samuel Emangard
Priority: Trivial
Attachments: Samuel.rar
Mapping documents:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
'-//Hibernate/Hibernate Mapping DTD 3.0//EN'
'http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd'>
<hibernate-mapping package="com.toluna.samuel.hibernate.emailtemplate">
<class name="EmailTemplate" table="EmailTemplate">
<id name="id" type="long">
<column name="template_id" not-null="true"/>
<generator class="native"/>
</id>
<property name="name">
<column name="email_name" not-null="false"/>
</property>
<property name="htmlTextClob" type="clob">
<column name="html_Text" not-null="false"/>
</property>
<property name="plainTextClob" type="clob">
<column name="plain_Text" not-null="false"/>
</property>
</class>
</hibernate-mapping>
Extract also of my Java bean:
ublic class EmailTemplate {
private long id;
private String name;
private String plainText = " ";
private String htmlText = " ";
private Clob plainTextClob;
private Clob htmlTextClob;
...
Code of the test case:
Session ss = HibernateUtil.getSessionFactory().getCurrentSession();
//S_LOGGER.debug("Number of current Hibernate sessions: "+ HibernateUtil.getSessionFactory().getStatistics().getSessionOpenCount());
ss.getTransaction().begin();
EmailTemplate et = (EmailTemplate) ss.load(EmailTemplate.class, new Long("299941536982302"));
S_LOGGER.debug(et.getName());
Thread.sleep(5000);
S_LOGGER.debug("BEFORE FLUSH");
ss.flush();
S_LOGGER.debug("AFTER FLUSH");
ss.getTransaction().commit();
The generated SQL :
The load statement is always generated:
/* load com.toluna.samuel.hibernate.emailtemplate.EmailTemplate */ select
emailtempl0_.template_id as template1_0_0_,
emailtempl0_.email_name as email2_0_0_,
emailtempl0_.html_Text as html3_0_0_,
emailtempl0_.plain_Text as plain4_0_0_
from
EmailTemplate emailtempl0_
where
emailtempl0_.template_id=?
....
Depending on the implementation of the getter, the following update statement is generated:
/* update
com.toluna.samuel.hibernate.emailtemplate.EmailTemplate */ update
EmailTemplate
set
email_name=?,
html_Text=?,
plain_Text=?
where
template_id=?
Here is the getter:
Clob getHtmlTextClob() {
//1-
//return Hibernate.createClob(htmlText != null ? htmlText : " ");
//2-
return htmlTextClob;
}
With 1- the update statement is generated
With 2- the update statement is not generated
Why?
Extract of the setter:
void setHtmlTextClob(Clob htmlTextClob) {
this.htmlTextClob = htmlTextClob;
try {
if (htmlTextClob != null) {
htmlText = HibernateUtil.getStringFromClob(htmlTextClob);
//htmlText = "samuel";
} else
htmlText = "";
} catch (SQLException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
I have also another more critical issue which seems tied to the previous:
If I write the following piece of test code instead of the one shown above:
Session ss = HibernateUtil.getSessionFactory().openSession();
//S_LOGGER.debug("Number of current Hibernate sessions: "+ HibernateUtil.getSessionFactory().getStatistics().getSessionOpenCount());
EmailTemplate et = (EmailTemplate) ss.load(EmailTemplate.class, new Long("299941536982302"));
S_LOGGER.debug(et.getName());
Thread.sleep(5000);
S_LOGGER.debug("BEFORE FLUSH");
ss.flush();
S_LOGGER.debug("AFTER FLUSH");
As you can see in this piece of code i do not manage transactions explicitly and in that case my 2 java threads generated update statements which never ended: there was a deadlock on the DB.
During the last test, If I still did not manage transactions explicitly but I modified the getter like that:
Clob getHtmlTextClob() {
return htmlTextClob;
}
Then neither update statements nor deadlock were generated.
I wrote this piece of test code to reproduce deadlock I was facing on my Jonas server.
Could you please help me to understand this behaviour?
Here is anextract of my hibernate.cfg.xml:
<property name="connection.url">jdbc:oracle:thin:@192.168.2.7:1521:tlorcl1</property>
<property name="connection.username">samuel</property>
<property name="connection.password">toluna</property>
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.format_sql">true</property>
<property name="hibernate.use_sql_comments">true</property>
<property name="myeclipse.connection.profile">QA</property>
<property name="current_session_context_class">thread</property>
Thanks in advance
Regards
Samuel
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (EJB-445) Hi Gavin, I am facing the below issue in my application.Could you provide your suggesstion on this?
by Yohida (JIRA)
Hi Gavin, I am facing the below issue in my application.Could you provide your suggesstion on this?
---------------------------------------------------------------------------------------------------
Key: EJB-445
URL: http://opensource.atlassian.com/projects/hibernate/browse/EJB-445
Project: Hibernate Entity Manager
Issue Type: Bug
Environment: hibernate 2.0 and oracle database
Reporter: Yohida
RMICallHandler-5 15:55:46,933 WARN [StaleObjectStateException] An operation failed due to stale data
net.sf.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect) for com.domain.user.bo.ModeListImpl instance with identifier: com.domain.user.bo.ModeListImpl@175718c[objectId=<null>]
at net.sf.hibernate.persister.AbstractEntityPersister.check(AbstractEntityPersister.java:513)
at net.sf.hibernate.persister.NormalizedEntityPersister.update(NormalizedEntityPersister.java:664)
at net.sf.hibernate.persister.NormalizedEntityPersister.update(NormalizedEntityPersister.java:639)
at net.sf.hibernate.impl.ScheduledUpdate.execute(ScheduledUpdate.java:52)
at net.sf.hibernate.impl.SessionImpl.execute(SessionImpl.java:2449)
at net.sf.hibernate.impl.SessionImpl.executeAll(SessionImpl.java:2435)
at net.sf.hibernate.impl.SessionImpl.execute(SessionImpl.java:2393)
at net.sf.hibernate.impl.SessionImpl.flush(SessionImpl.java:2261)
at com.retek.rpm.domain.core.persistence.PersistenceManagerImpl.flush(PersistenceManagerImpl.java:201)
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-3646) implement Criteria API querying of collection-of-component
by David Mansfield (JIRA)
implement Criteria API querying of collection-of-component
----------------------------------------------------------
Key: HHH-3646
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3646
Project: Hibernate Core
Issue Type: Patch
Components: query-criteria
Affects Versions: 3.2.6
Environment: hibernate 3.2.6, tested on linux 64-bit openjdk 1.6 (jdk1.5 for compiling). mapping created under annotations 3.3.1ga
Reporter: David Mansfield
Attachments: hib-core-query-collection-of-elements-3_2_6.patch
the attached patch implements a first cut, extremely rough, yet working extension of the CriteriaQueryTranslator class to allow for querying of properties of components inside a collection, or querying properties of associated elements of components inside a collection. eg for
* code is lightly tested, this example is for illustrative purposes only
* i use annotations, so my example is expressed in those terms, and i've only tested with mappings generated via annotations, however, the modifications only apply to the core.
@Entity
class Order {
@Id
String id;
@CollectionOfElements
Set<OrderLineItem> lineItems;
}
@Embeddable
class OrderLineItem {
@ManyToOne
Product product;
Integer quantity;
}
@Entity
class Product {
String name;
}
Then we can now do:
Criteria c = session.createCriteria(Order.class)
.createCriteria("lineItems")
.add(Restrictions.gt("quantity", new Integer(1))
.list();
or
Criteria c = session.createCriteria(Order.class)
.createCriteria("lineItems")
.createCriteria("product")
.add(Restrictions.like("name", "cake%")
.list();
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-3593) be able to configure statistics enablement
by John Mazzitelli (JIRA)
be able to configure statistics enablement
------------------------------------------
Key: HHH-3593
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3593
Project: Hibernate Core
Issue Type: Improvement
Components: core
Reporter: John Mazzitelli
Priority: Minor
Right now, in order to enable Hibernate to collect and emit statistics to monitoring tools, your application has to manually execute code similar to the following:
StatisticsService mBean = new StatisticsService();
SessionFactory sessionFactory = ...get hibernate session factory...
mBean.setSessionFactory(sessionFactory);
ObjectName objectName = new ObjectName("Hibernate:application=MY_APP_NAME,type=statistics");
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
mbs.registerMBean(mBean, objectName);
sessionFactory.getStatistics().setStatisticsEnabled(true);
It would be nice if this was configurable, so a user of Hibernate doesn't need to write this code.
For example:
hibernate.statistics.enabled=true
hibernate.statistics.objectname=Hibernate:application=MY_APP_NAME,type=statistics
hibernate.statistics.mbeanserver=*platform*
This would turn on Hibernate statistics and tell it to register the Statistics MBean in the JVM's platform MBean Server (ManagementFactory.getPlatformMBeanServer). Of course, *platform* would only be valid on Java5 or higher VMs. Note that hibernate will need to allow the object name to be configurable as well.
Or...
hibernate.statistics.enabled=true
hibernate.statistics.objectname=Hibernate:application=MY_APP_NAME,type=statistics
hibernate.statistics.mbeanserver=my_mbs_name
This tells Hibernate to register the MBean in the named MBeanServer where the "my_mbs_name" is the default domain name of the MBeanServer you want (if it doesn't exist, Hibernate should create the MBeanServer with the named default domain).
In fact, I had the Remoting project do something similar, so you can see code that gets the MBeanServer using these two ways by looking at the .patch attached to: https://jira.jboss.org/jira/browse/JBREM-746 and its related fix.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-4999) createSQLQuery(query).list() result screw up when when columns in different tables have same name
by thogau (JIRA)
createSQLQuery(query).list() result screw up when when columns in different tables have same name
-------------------------------------------------------------------------------------------------
Key: HHH-4999
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-4999
Project: Hibernate Core
Issue Type: Bug
Components: query-sql
Affects Versions: 3.5.0-CR-2
Environment: hibernate-core 3.5.0-CR-2
MySQL 5
Reporter: thogau
Attachments: joinProblem.zip
The same SQL query doesn't retrieve the same results with hibernate and SQL client :
{{SELECT groupe.name, center.name, roles.displayname, users.username, CASE WHEN center.id = 2 THEN 1 ELSE 0 END AS showlast
FROM groupe, center, users, roles WHERE users.role_id = roles.id AND users.center_id = center.id
AND center.group_id = groupe.id ORDER BY showlast, groupe.sitecoordinateur DESC, groupe.name, center.headcenter DESC, center.name, roles.id}}
When performed with hibernate, *group.name* is retrieved twice (*center.name* is always the same as *group.name*).
Still, it is possible to retrieve the correct value for *center.name* using *CONCAT('', center.name)*
A small eclipse + maven projet with unit test is attached.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-5159) 'in elements' does not work on ElementCollections of Enums
by Peer Hartmann (JIRA)
'in elements' does not work on ElementCollections of Enums
----------------------------------------------------------
Key: HHH-5159
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-5159
Project: Hibernate Core
Issue Type: Bug
Components: core, entity-manager, query-hql
Affects Versions: 3.5.1, 3.3.2
Environment: Oracle 10, Hibernate 3.5.1-Final
Reporter: Peer Hartmann
Attachments: bugreport-mvn.zip
When performing a query with an 'in elements' clause and an enum typed parameter, hibernate does not correctly set the parameter value for the underlying SQL. Here is an example (HQL) query:
select e from Employee e where :function in elements( e.jobFunctions );
Hibernate makes the following SQL of that (correct)
Hibernate: select employee0_.id as id9_, employee0_.name as name9_ from Employee employee0_ where ? in (select jobfunctio1_.jobfunction from employee2jobfunction jobfunctio1_ where employee0_.id=jobfunctio1_.employeeId)
...but sets the parameter wrong as it uses toString instead of the name of the enum:
[LogPreparedStatement] DEBUG - executing PreparedStatement: 'select ... from employee2jobfunction ...' with bind parameters: {1=[B@2eb6fb}
the exmaple uses an employee entity class with an ElementCollection of JobFunction-enum entries. See the attached zip-file for details.
The same query works when using an entity instead of an enum.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-2710) Cannot specify on-delete="cascade" for a map or a set with just one element
by Gerald Klopp (JIRA)
Cannot specify on-delete="cascade" for a map or a set with just one element
---------------------------------------------------------------------------
Key: HHH-2710
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2710
Project: Hibernate3
Issue Type: Improvement
Components: core
Affects Versions: 3.2.4
Reporter: Gerald Klopp
Priority: Minor
I'd like to specify the on-delete="cascade" attribute for a map or for a set with just one element.
When I try to do this, I get the following exception :
Initial SessionFactory creation failed.org.hibernate.MappingException: only inverse one-to-many associations may use on-delete="cascade"
The on-delete="cascade" attribute can be specified for more complex relationships like one-to-many. But it seems that the case of a simple map or set is not covered.
- Mapping document example:
<hibernate-mapping>
<class name="Document" table="DOCUMENT">
<id name="id" column="DOCUMENT_ID">
<generator class="native" />
</id>
<map name="titles" table="DOCUMENT_TITLE" lazy="false">
<key column="DOCUMENT_ID" on-delete="cascade" />
<index column="LANGUAGE" type="string" />
<element column="TITLE" type="text" not-null="true" />
</map>
<set name="references" table="DOCUMENT_REFERENCE" lazy="false">
<key column="DOCUMENT_ID" on-delete="cascade" />
<element type="string" column="REFERENCE" />
</set>
</class>
</hibernate-mapping>
- Exception stack trace :
Initial SessionFactory creation failed.org.hibernate.MappingException: only inverse one-to-many associations may use on-delete="cascade": Document.references
Exception in thread "main" java.lang.ExceptionInInitializerError
at fr.gklopp.test.hibernate3.util.HibernateUtil.<clinit>(HibernateUtil.java:17)
at fr.gklopp.test.hibernate3.simple.DocumentManager.createAndStoreDocument(DocumentManager.java:23)
at fr.gklopp.test.hibernate3.simple.DocumentManager.main(DocumentManager.java:68)
Caused by: org.hibernate.MappingException: only inverse one-to-many associations may use on-delete="cascade": fr.gklopp.test.hibernate3.simple.Document.references
at org.hibernate.mapping.Collection.validate(Collection.java:267)
at org.hibernate.mapping.Set.validate(Set.java:19)
at org.hibernate.cfg.Configuration.validate(Configuration.java:1106)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1287)
at fr.gklopp.test.hibernate3.util.HibernateUtil.<clinit>(HibernateUtil.java:13)
... 2 more
- Database : Oracle 10
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-2587) There is an attempt to set more parameters on a prepared statement than the latter can hold
by Zied Hamdi (JIRA)
There is an attempt to set more parameters on a prepared statement than the latter can hold
-------------------------------------------------------------------------------------------
Key: HHH-2587
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2587
Project: Hibernate3
Issue Type: Bug
Components: query-sql
Affects Versions: 3.2.3
Environment: JPA through hibernate
Reporter: Zied Hamdi
Priority: Blocker
Attachments: IntoCore.zip
You can directly import the zip content into netBeans 5.5 the just launch: the test is executed at the home page servlet call.
I have an index that doesn't exist : 11 (the total count of columns is 10) :
Hibernate: insert into BasicPersonArchiveEntry (endDate, entryPerformer_revision, entryPerformer_id, lastOccurence, note, startDate, source_revision, source_id, revision, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
could not bind value '0' to parameter: 11; Invalid argument: parameter index 11 is out of range.
SQL Error: -99999, SQLState: null
Invalid argument: parameter index 11 is out of range.
Could not synchronize database state with session
org.hibernate.exception.GenericJDBCException: could not insert: [com.homeservices.model.impl.BasicPersonArchiveEntry]
at org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:103)
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:91)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2267)
at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2660)
at org.hibernate.action.EntityInsertAction.execute(EntityInsertAction.java:52)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:248)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:232)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:139)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:298)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1000)
at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:338)
at org.hibernate.ejb.AbstractEntityManagerImpl$1.beforeCompletion(AbstractEntityManagerImpl.java:516)
at com.sun.enterprise.distributedtx.J2EETransaction.commit(J2EETransaction.java:395)
at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.commit(J2EETransactionManagerOpt.java:357)
at com.sun.ejb.containers.BaseContainer.completeNewTx(BaseContainer.java:3653)
at com.sun.ejb.containers.BaseContainer.postInvokeTx(BaseContainer.java:3431)
at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1247)
at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:192)
at com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate.invoke(EJBLocalObjectInvocationHandlerDelegate.java:118)
at $Proxy49.create(Unknown Source)
at tests.entities.TestArchiveServlet.processRequest(TestArchiveServlet.java:46)
at tests.entities.TestArchiveServlet.doGet(TestArchiveServlet.java:61)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:231)
at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
Caused by: org.apache.derby.client.am.SqlException: Invalid argument: parameter index 11 is out of range.
at org.apache.derby.client.am.PreparedStatement.checkForValidParameterIndex(Unknown Source)
at org.apache.derby.client.am.PreparedStatement.checkSetterPreconditions(Unknown Source)
at org.apache.derby.client.am.PreparedStatement.setLong(Unknown Source)
at org.hibernate.type.LongType.set(LongType.java:42)
at org.hibernate.type.NullableType.nullSafeSet(NullableType.java:136)
at org.hibernate.type.NullableType.nullSafeSet(NullableType.java:116)
at org.hibernate.type.ComponentType.nullSafeSet(ComponentType.java:284)
at org.hibernate.persister.entity.AbstractEntityPersister.dehydrate(AbstractEntityPersister.java:2008)
at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2243)
... 46 more
EJB5018: An exception was thrown during an ejb invocation on [ArchivableFacadeStatelessBean]
javax.ejb.EJBException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (EJB-408) c3p0 not working with hibernate-entitymanager 3.4.0.GA
by Marcelo Romulo Fernandes (JIRA)
c3p0 not working with hibernate-entitymanager 3.4.0.GA
------------------------------------------------------
Key: EJB-408
URL: http://opensource.atlassian.com/projects/hibernate/browse/EJB-408
Project: Hibernate Entity Manager
Issue Type: Bug
Components: EntityManager
Affects Versions: 3.4.0.GA
Environment: windows xp sp2; java sun 1.6.0_10; tomcat 6.0.18; maven 2.0.9
Reporter: Marcelo Romulo Fernandes
Priority: Minor
I was using hibernate-entitymanager 3.2.6.GA and c3p0 well, but I cannot run c3p0 with hibernate-entitymanager 3.4.0.GA. c3p0 is never called!!!
Below, follows persistence.xml, maven dependencies working with hibernate-entitymanager 3.2.6.GA, maven dependencies not woking with hibernate-entitymanager 3.4.0.GA
persistence.xml:
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
<persistence-unit name="SystemDDD" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<!-- Connection properties -->
<property name="hibernate.connection.username" value="DDD"/>
<property name="hibernate.connection.password" value="DDD"/>
<property name="hibernate.default_schema" value="DDD"/>
<property name="hibernate.connection.url" value="jdbc:oracle:thin:@//YYY:1521/ZZZ"/>
<property name="hibernate.connection.driver_class" value="oracle.jdbc.OracleDriver"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.OracleDialect"/>
<!-- Connection pooling properties -->
<property name="hibernate.c3p0.min_size" value="1"/>
<property name="hibernate.c3p0.max_size" value="10"/>
<property name="hibernate.c3p0.timeout" value="5000"/>
<property name="hibernate.c3p0.max_statements" value="50"/>
<property name="hibernate.c3p0.idle_test_period" value="60000"/>
<!-- Cache properties -->
<property name="hibernate.cache.use_second_level_cache" value="true"/>
<property name="hibernate.cache.provider_class" value="org.hibernate.cache.EhCacheProvider"/>
<!-- Other properties -->
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.format_sql" value="true"/>
<property name="hibernate.archive.autodetection" value="class, hbm"/>
<property name="hibernate.hbm2ddl.auto" value="none"/>
</properties>
</persistence-unit>
</persistence>
maven dependencies working with hibernate-entitymanager 3.2.6.GA
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.3.2.GA</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.1.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
maven dependencies not woking with hibernate-entitymanager 3.4.0.GA
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.4.0.GA</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId>
<version>3.3.0.SP1</version>
<type>jar</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.2</version>
<type>jar</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>3.3.0.SP1</version>
<type>jar</type>
<scope>runtime</scope>
</dependency>
What is wrong or missing?
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[Hibernate-JIRA] Created: (HHH-2460) Multiple object creates on HQL select causes "unexpected token: ,"
by Steve Mayhew (JIRA)
Multiple object creates on HQL select causes "unexpected token: ,"
------------------------------------------------------------------
Key: HHH-2460
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2460
Project: Hibernate3
Type: Bug
Components: query-hql
Versions: 3.1.2
Environment: MySQL
Reporter: Steve Mayhew
When executing this query:
select new java.lang.String('test1'), new java.lang.String('test2')
from SomeMappedClass
You get a syntax error. It does not matter what is in the from clause, result is always the same.
[2007-03-01 16:51:29,349] [ERROR:org.hibernate.hql.PARSER] [] - line 1:37: unexpected token: ,
[2007-03-01 16:51:29,365] [DEBUG:org.hibernate.hql.ast.AST] [] - --- HQL AST ---
\-[QUERY] 'query'
org.hibernate.hql.ast.QuerySyntaxException: unexpected token: , near line 1, column 37 [select new java.lang.String('test1'), new java.lang.String('test2')
from SomeMappedClass
at org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:59)
at org.hibernate.hql.ast.QueryTranslatorImpl.parse(QueryTranslatorImpl.java:244)
at org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:155)
at org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:109)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:75)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:54)
at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:71)
at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:134)
at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:113)
at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1602)
at net.jvnet.dev.hqe.ThreadHQLQueryExecution.run(Unknown Source)
Caused by: line 1:37: unexpected token: ,
at org.hibernate.hql.antlr.HqlBaseParser.selectFrom(HqlBaseParser.java:1145)
at org.hibernate.hql.antlr.HqlBaseParser.queryRule(HqlBaseParser.java:702)
at org.hibernate.hql.antlr.HqlBaseParser.selectStatement(HqlBaseParser.java:296)
at org.hibernate.hql.antlr.HqlBaseParser.statement(HqlBaseParser.java:159)
at org.hibernate.hql.ast.QueryTranslatorImpl.parse(QueryTranslatorImpl.java:238)
... 9 more
--
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....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-3494) HQLQueryPlan gives back zero result for "getSingleResult()" although one result is available
by Christian Hofschroer (JIRA)
HQLQueryPlan gives back zero result for "getSingleResult()" although one result is available
--------------------------------------------------------------------------------------------
Key: HHH-3494
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3494
Project: Hibernate Core
Issue Type: Bug
Components: query-hql
Affects Versions: 3.3.1
Environment: 3.3.1.GA, hsqldb 1.8.0.7
Reporter: Christian Hofschroer
Attachments: patch.txt
I have run the following code snippets both and only the second one works, because there is a bug in HQLQueryPlan.
// This does not work correctly (query is javax.persistence.Query)
ExampleObject e = (ExampleObject) query.getSingleResult();
// Replacement with this code works
List l=query.getResultList() ;
assertEquals(1,l.size()) ;
ExampleObject e=(ExampleObject)l.get(0) ;
This problem occurs only in seldom cases when
1. Hibernate executes several sql queries and merges the result
and
2. There is a limit of results (the limit is "2" in version 3.3.1.GA, because only one result is expected anyway)
Attached is a patch for the class HQLQueryPlan. The line
if ( distinction.add( result ) ) {
has to be replaced with
if ( ! distinction.add( result ) ) {
In case the object was found it returns "true". With the current implementation the object is not added to "combinedResults" although it should be added.
It was not possible to reproduce the problem with the setup from "testsuite". If necessary I can provide a JUnit testcase.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-3121) Using fetch="subselect" and second level cache causes NullPointerException
by Adam Brod (JIRA)
Using fetch="subselect" and second level cache causes NullPointerException
--------------------------------------------------------------------------
Key: HHH-3121
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-3121
Project: Hibernate3
Issue Type: Bug
Components: caching (L2)
Affects Versions: 3.2.6
Environment: Oracle 10g
Reporter: Adam Brod
I've been tuning some of our mappings to use fetch="subselect" to reduce the number of DB queries. However, I have run into two cases where I get the exception below. In both cases, I was loading a list of Videos, which are mapped to a list of other objects. (In this example, Media is the superclass of Video.) I apologize that I can't upload a full working example, but I will include the relevant mapping info.
<class name="Media" table="media" lazy="false" discriminator-value="0">
<cache usage="nonstrict-read-write"/>
<id name="id" column="id" type="long">
<generator class="seqhilo"><param name="sequence">hibernate_hi_sequence</param><param name="max_lo">500</param></generator>
</id>
...
<list name="tags" lazy="true" table="media_tags" cascade="save-update" fetch="subselect">
<cache usage="nonstrict-read-write"/>
<key column="media_id"/>
<list-index column="idx"/>
<many-to-many column="tag_id" class="com.brightcove.catalog.Tag"/>
</list>
...
<subclass name="Video" lazy="false" discriminator-value="1">
...
</subclass>
</class>
<class name="Tag" table="tag">
...
</class>
The HQL being executed is just a simple "from Video v where v.publisher_id = :pubId".
The line of code where the exception is generated in Video.getDTO() is accessing the Tags list:
for (Tag tag : getTags()) {
tags.add(tag.getDTO());
}
I've debugged into the Hibernate source to see where the NPE comes from (CollectionLoadContext line 298).
if ( persister.isVersioned() ) {
versionComparator = persister.getOwnerEntityPersister().getVersionType().getComparator();
final Object collectionOwner = getLoadContext().getPersistenceContext().getCollectionOwner( lce.getKey(), persister );
version = getLoadContext().getPersistenceContext().getEntry( collectionOwner ).getVersion(); //NPE!
}
It seems that "collectionOwner" is null, so calling getEntry(collectionOwner) returns null. Calling getVersion() on a null entry is what throws the NPE.
java.lang.NullPointerException
at org.hibernate.engine.loading.CollectionLoadContext.addCollectionToCache(CollectionLoadContext.java:298)
at org.hibernate.engine.loading.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:256)
at org.hibernate.engine.loading.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:222)
at org.hibernate.engine.loading.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:195)
at org.hibernate.loader.Loader.endCollectionLoad(Loader.java:877)
at org.hibernate.loader.Loader.initializeEntitiesAndCollections(Loader.java:865)
at org.hibernate.loader.Loader.doQuery(Loader.java:729)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:236)
at org.hibernate.loader.Loader.loadCollectionSubselect(Loader.java:2066)
at org.hibernate.loader.collection.SubselectCollectionLoader.initialize(SubselectCollectionLoader.java:58)
at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:565)
at org.hibernate.event.def.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:60)
at org.hibernate.impl.SessionImpl.initializeCollection(SessionImpl.java:1716)
at org.hibernate.collection.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:344)
at org.hibernate.collection.AbstractPersistentCollection.read(AbstractPersistentCollection.java:86)
at org.hibernate.collection.AbstractPersistentCollection.readSize(AbstractPersistentCollection.java:109)
at org.hibernate.collection.PersistentList.size(PersistentList.java:91)
at com.brightcove.catalog.EconomicEntity.populateDTO(EconomicEntity.java:460)
at com.brightcove.catalog.Media.populateDTO(Media.java:192)
at com.brightcove.catalog.Video.populateDTO(Video.java:854)
at com.brightcove.catalog.Video.getDTO(Video.java:783)
at com.brightcove.catalog.Video.getDTO(Video.java:756)
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (ANN-687) orm.xml - cleanup respecting column names
by darren hartford (JIRA)
orm.xml - cleanup respecting column names
-----------------------------------------
Key: ANN-687
URL: http://opensource.atlassian.com/projects/hibernate/browse/ANN-687
Project: Hibernate Annotations
Issue Type: Bug
Components: binder
Affects Versions: 3.3.0.ga
Environment: mysql 5, MS SQL 2000, Win2000, hibernate 3.2.4
Reporter: darren hartford
couple of issues with orm.xml mapping file that is not fully implemented and needs cleanup.
many-to-many table mapping not respecting column names.
http://forum.hibernate.org/viewtopic.php?t=982330
id-class not respecting column names (end of an old issue, repeated with different scenario).
http://opensource.atlassian.com/projects/hibernate/browse/ANN-361
<id-class class="MyTestId"/>
<attributes>
<id name="compoundOne">
<column name="COMPOUND_ONE"/>
</id>
<id name="compoundTwo">
<column name="COMPOUND_TWO"/>
</id>
...
WARNING: Preparing the statement failed: Invalid column name 'compoundOne'.
WARNING: Preparing the statement failed: Invalid column name 'compoundTwo'.
==========
Use case and urgency of issue related to external technology integration.
-DTO should not require hibernate-annotations to be used in client-code, but is required when using annotations. orm.xml approach removes this limitation.
-GWT 1.4 does not work with java 1.5/annotated DTO. Although everyone keeps pushing it off saying 'GWT 1.5 is on the way', it is not and solutions that should have been working to work around that limitation need to be working correctly.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-5056) Criteria API with ProjectionList and Unique result
by Ahmed Ali Elsayed Ali Soliman (JIRA)
Criteria API with ProjectionList and Unique result
--------------------------------------------------
Key: HHH-5056
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-5056
Project: Hibernate Core
Issue Type: Bug
Components: query-criteria
Affects Versions: 3.5.0-CR-2
Environment: Hibernate 3.3.2, Oracel 11g
Reporter: Ahmed Ali Elsayed Ali Soliman
Priority: Critical
when you make a select statement with Criteria API & use ProjectionList to retrieve some columns then use the unique result
make at least 2 projection list (2 columns or more)
ProjectionList projectionList = Projections.projectionList() .add(Projections.property("ColumnA")) .add(Projections.property("ColumnB"));
criteria.setResultTransformer(CriteriaSpecification.DISTINCT_ROOT_ENTITY);
the result must be retrieved in 2 dimensional array of Object(Object[][])
but the result are one dimensional array with one column only.
Note:- when you remove the unique result it works fine but when you add it, it make this behavior.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (ANN-472) @UniqueConstraint declaration is not friendly towards inheritance or reflection
by Ted Bergeron (JIRA)
@UniqueConstraint declaration is not friendly towards inheritance or reflection
-------------------------------------------------------------------------------
Key: ANN-472
URL: http://opensource.atlassian.com/projects/hibernate/browse/ANN-472
Project: Hibernate Annotations
Type: Improvement
Versions: 3.2.0.ga
Environment: Hibernate 3.2 GA
Reporter: Ted Bergeron
The current way to define a composite unique constraint is limiting.
@Table(name="tbl_sky",
uniqueConstraints = {@UniqueConstraint(columnNames={"month", "day"})}
)
Suppose I have an abstract base class called A that gives me Id and Name, subclassed by abstract class B that gives me Customer. Then I have many concrete classes that subclass B. For all of these, I'd want the combination of Name and Customer to be unique. As I do not use @Table with abstract base classes, I currently have to repeat: uniqueConstraints = {@UniqueConstraint(columnNames={"name", "customer_id"})} on all concrete classes.
If we had an alternate way to define these constraints at the property level (as XDoclet did with hibernate 2), I could define this in the base classes and inherit the constraint declaration.
The other need is that I would like to use reflection to scan the properties and apply proper validations in the view layer. With @Column(unique = true) this is easy to do. The view layer makes an AJAX call and all is well. For a composite constraint, it does not work well currently.
--
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....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-4939) Bidirectional OneToOne mapping with FK and composite PK sharing a column throws MappingException
by Chris Wilson (JIRA)
Bidirectional OneToOne mapping with FK and composite PK sharing a column throws MappingException
------------------------------------------------------------------------------------------------
Key: HHH-4939
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-4939
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 3.3.2
Reporter: Chris Wilson
Attachments: HibernateAnnotationMappingOneToOneTest.java
A bidirectional one-to-one mapping, where the owning side's column is part of a composite primary key, fails to configure, possibly because OneToOneType#getColumnSpan returns zero instead of the actual number of columns used by the join.
When the foreign key column used is not also part of the primary key, or the composite primary key contains only a single column, then the mapping doesn't fail.
{code}
org.hibernate.MappingException: broken column mapping for: journeyComment.id of: org.wfp.rita.test.hibernate.HibernateAnnotationMappingOneToOneTest$Journey
at org.hibernate.persister.entity.AbstractPropertyMapping.initPropertyPaths(AbstractPropertyMapping.java:143)
at org.hibernate.persister.entity.AbstractPropertyMapping.initIdentifierPropertyPaths(AbstractPropertyMapping.java:206)
at org.hibernate.persister.entity.AbstractPropertyMapping.initPropertyPaths(AbstractPropertyMapping.java:181)
at org.hibernate.persister.entity.AbstractEntityPersister.initOrdinaryPropertyPaths(AbstractEntityPersister.java:1725)
at org.hibernate.persister.entity.AbstractEntityPersister.initPropertyPaths(AbstractEntityPersister.java:1755)
at org.hibernate.persister.entity.AbstractEntityPersister.postConstruct(AbstractEntityPersister.java:2932)
at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:431)
at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:84)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:267)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1341)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:867)
at org.wfp.rita.test.base.HibernateTestBase.buildSessionFactory(HibernateTestBase.java:93)
at org.wfp.rita.test.base.HibernateTestBase.setUp(HibernateTestBase.java:106)
at junit.framework.TestCase.runBare(TestCase.java:128)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:120)
at junit.framework.TestSuite.runTest(TestSuite.java:230)
at junit.framework.TestSuite.run(TestSuite.java:225)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
{code}
Test case attached. Change HibernateTestBase to org.hibernate.test.annotations.TestCase to run under Hibernate.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-2692) Insert Into Select command doesn't allow named parameter as select output (insert input)
by John Aylward (JIRA)
Insert Into Select command doesn't allow named parameter as select output (insert input)
----------------------------------------------------------------------------------------
Key: HHH-2692
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2692
Project: Hibernate3
Issue Type: Bug
Components: query-hql
Affects Versions: 3.2.4.sp1
Environment: Hibernate 3.2.4.sp1 with Annotations 3.3.0 And Validator 3.0.0
MySQL 5.0.42
Reporter: John Aylward
receive exception:
org.hibernate.QueryException: number of select types did not match those for insert [INSERT INTO ProviderInvoiceLineItem (amount,billingAccount,circuit,description,invoice,type) SELECT pili.amount, pili.billingAccount, pili.circuit, pili.description, :newInvoice, pili.type FROM com.cicat.bedrock.billing.model.ProviderInvoiceLineItem pili WHERE pili.invoice = :oldInvoice]
Idea is to copy all line items from one invoice to another. In other words, only difference between data should be the invoice. easiest way to do this is with "insert into" command and passing parameter of changed value.
* Trying to cast named parameter (:newInvoice) caused parsing error
* Trying to replace invoice with invoice_id and repacing :newInvoice with actual invoice id resulted in a "property 'invoice_id' not found" exception
Should be able to set a value through a named parameter
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-2391) ManyToMany+FetchMode.SUBSELECT+2nd level cache= NPE
by Mike Youngstrom (JIRA)
ManyToMany+FetchMode.SUBSELECT+2nd level cache= NPE
---------------------------------------------------
Key: HHH-2391
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2391
Project: Hibernate3
Type: Bug
Components: core
Versions: 3.2.2
Reporter: Mike Youngstrom
For more context see the forum post here: http://forum.hibernate.org/viewtopic.php?t=968643
I have a model animal with s many-to-many with country. I do a @Fetch(FetchMode.SUBSELECT) on animal.countries.
When I query for an animal I get a NPE. If I remove the @Fetch(FetchMode.SUBSELECT) from animal.countries then everything works fine. If I remove @Cache from animal.countries then everything works fine.
I've included Animal and the inverse (Country) I've also included a trace log of the error happening from a query of Animal.
--------------Animal.java-----------------
public class Animal implements Serializable {
public static final String QUERY_GET_ALL_ANIMALS_AS_SELECT_ITEMS = "getAllAnimalsAsSelectItems";
@Id @GeneratedValue
private Long id;
@Temporal(TemporalType.TIMESTAMP)
@Column(name="CREATED", nullable = false, updatable = false)
private Date created = new Date();
@Column(unique=true, nullable=false)
private String name;
@Enumerated(EnumType.STRING)
private Gender gender;
@Column(length=4000)
private String description;
private String imageUrl;
@Column(nullable=false)
private double price;
private Date dateOfBirth;
@ManyToOne(fetch=FetchType.LAZY)
private Classification classification;
@ManyToMany(fetch=FetchType.EAGER)
@JoinTable(name="ANIMAL_COUNTRY",
joinColumns=@JoinColumn(name="ANIMAL_ID"),
inverseJoinColumns=@JoinColumn(name="COUNTRY_ID"))
@Cache(usage=CacheConcurrencyStrategy.TRANSACTIONAL)
@BatchSize(size=10)
@OrderBy("name")
@Fetch(FetchMode.SUBSELECT)
private Set<Country> countries;
@SuppressWarnings("unused")
@Version
private Long version = 1L;
}
----------------Country.java------------------
public class Country implements Serializable {
public static final String QUERY_ALL_COUNTRY_IDS_AS_SELECT_ITEMS = "allCountryIdsAsSelectItems";
public static final String QUERY_ALL_COUNTRIES_AS_SELECT_ITEMS = "allCountriesAsSelectItems";
@Id @GeneratedValue @Column(updatable=false)
private Long id;
@Column(unique=true, nullable=false)
public String name;
@Cache(usage=CacheConcurrencyStrategy.TRANSACTIONAL)
@ManyToMany(mappedBy="countries", fetch=FetchType.EAGER)
@Fetch(FetchMode.SUBSELECT)
@BatchSize(size=20)
public Set<Animal> animals;
}
-------------------LOG----------------------------
10:44:18,453 DEBUG SQL:
/* select
a
from
Animal a
where
upper(a.name) like upper(?1)
order by
upper(name) ASC */ select
*
from
( select
animal0_.id as id1_,
animal0_.CREATED as CREATED1_,
animal0_.name as name1_,
animal0_.gender as gender1_,
animal0_.description as descript5_1_,
animal0_.imageUrl as imageUrl1_,
animal0_.price as price1_,
animal0_.dateOfBirth as dateOfBi8_1_,
animal0_.classification_id as classif10_1_,
animal0_.version as version1_
from
Animal animal0_
where
upper(animal0_.name) like upper(?)
order by
upper(animal0_.name) ASC )
where
rownum <= ?
Hibernate:
/* select
a
from
Animal a
where
upper(a.name) like upper(?1)
order by
upper(name) ASC */ select
*
from
( select
animal0_.id as id1_,
animal0_.CREATED as CREATED1_,
animal0_.name as name1_,
animal0_.gender as gender1_,
animal0_.description as descript5_1_,
animal0_.imageUrl as imageUrl1_,
animal0_.price as price1_,
animal0_.dateOfBirth as dateOfBi8_1_,
animal0_.classification_id as classif10_1_,
animal0_.version as version1_
from
Animal animal0_
where
upper(animal0_.name) like upper(?)
order by
upper(animal0_.name) ASC )
where
rownum <= ?
10:44:18,453 DEBUG AbstractBatcher: preparing statement
10:44:18,453 DEBUG StringType: binding '%' to parameter: 1
10:44:18,453 DEBUG AbstractBatcher: about to open ResultSet (open ResultSets: 0, globally: 0)
10:44:18,453 DEBUG Loader: processing result set
10:44:18,453 DEBUG Loader: result set row: 0
10:44:18,453 DEBUG LongType: returning '505' as column: id1_
10:44:18,453 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Animal#505]
10:44:18,453 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Animal#505]
10:44:18,453 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Animal#505]
10:44:18,453 DEBUG TimestampType: returning '2007-01-26 14:12:19' as column: CREATED1_
10:44:18,453 DEBUG StringType: returning 'aaaaa' as column: name1_
10:44:18,453 DEBUG EnumType: Returning 'MALE' as column gender1_
10:44:18,453 DEBUG StringType: returning 'aaaaafasd
asdf
asdfs
adgadf
gdfagdfagfasdgasdfgadfgdfvgd
faxdc
fasdfa
sdfsdfuyasdgfjsdh sjfhsdjf has sd fjadb ddf
fjasdfhs djfas
ad
fasd fajksdhf'asdkfja
f asdfjkasdfhasdf
asdfhasjdfa
sdfasdfha'sdfha'sdfhasd'fa
sfasd
f
asdfasdkf;askfjasd fasd
fafjak;j
fagiajf
asdfgifgjdfklgja;fweai[tfjadfk iafjja'dfjasdifhasdf
afkasdjfiadadi ;asdifh;sfare ' as column: descript5_1_
10:44:18,453 DEBUG StringType: returning null as column: imageUrl1_
10:44:18,453 DEBUG DoubleType: returning '2.0' as column: price1_
10:44:18,453 DEBUG TimestampType: returning '2007-01-11 00:00:00' as column: dateOfBi8_1_
10:44:18,453 DEBUG LongType: returning '1' as column: classif10_1_
10:44:18,453 DEBUG LongType: returning '2' as column: version1_
10:44:18,453 DEBUG TwoPhaseLoad: Version: 2
10:44:18,453 DEBUG Loader: result set row: 1
10:44:18,453 DEBUG LongType: returning '19' as column: id1_
10:44:18,453 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Animal#19]
10:44:18,453 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Animal#19]
10:44:18,453 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Animal#19]
10:44:18,453 DEBUG TimestampType: returning '2007-01-17 13:43:45' as column: CREATED1_
10:44:18,453 DEBUG StringType: returning 'Alligator' as column: name1_
10:44:18,453 DEBUG EnumType: Returning 'FEMALE' as column gender1_
10:44:18,453 DEBUG StringType: returning 'The American Alligator is the biggest reptile in North America. Get this critter to raise your own pair of boots. She loves basking in the sun and eating neighborhood dogs. Especially likes cats.' as column: descript5_1_
10:44:18,453 DEBUG StringType: returning '/images/animals/alligator.jpg' as column: imageUrl1_
10:44:18,453 DEBUG DoubleType: returning '100.0' as column: price1_
10:44:18,453 DEBUG TimestampType: returning '2006-04-21 00:00:00' as column: dateOfBi8_1_
10:44:18,453 DEBUG LongType: returning '3' as column: classif10_1_
10:44:18,453 DEBUG LongType: returning '15' as column: version1_
10:44:18,453 DEBUG TwoPhaseLoad: Version: 15
10:44:18,453 DEBUG Loader: result set row: 2
10:44:18,453 DEBUG LongType: returning '15' as column: id1_
10:44:18,453 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Animal#15]
10:44:18,453 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Animal#15]
10:44:18,453 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Animal#15]
10:44:18,453 DEBUG TimestampType: returning '2007-01-17 13:43:45' as column: CREATED1_
10:44:18,453 DEBUG StringType: returning 'Amazon Parrot' as column: name1_
10:44:18,453 DEBUG EnumType: Returning 'MALE' as column gender1_
10:44:18,453 DEBUG StringType: returning 'Great companion for up to 75 years' as column: descript5_1_
10:44:18,453 DEBUG StringType: returning '/images/animals/bird4.gif' as column: imageUrl1_
10:44:18,453 DEBUG DoubleType: returning '100.0' as column: price1_
10:44:18,453 DEBUG TimestampType: returning '2006-04-21 06:05:05' as column: dateOfBi8_1_
10:44:18,453 DEBUG LongType: returning '5' as column: classif10_1_
10:44:18,453 DEBUG LongType: returning '1' as column: version1_
10:44:18,453 DEBUG TwoPhaseLoad: Version: 1
10:44:18,453 DEBUG Loader: result set row: 3
10:44:18,453 DEBUG LongType: returning '25' as column: id1_
10:44:18,453 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Animal#25]
10:44:18,453 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Animal#25]
10:44:18,453 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Animal#25]
10:44:18,453 DEBUG TimestampType: returning '2007-01-17 13:43:46' as column: CREATED1_
10:44:18,453 DEBUG StringType: returning 'American Bullfrog' as column: name1_
10:44:18,453 DEBUG EnumType: Returning 'MALE' as column gender1_
10:44:18,453 DEBUG StringType: returning 'Perhaps the most recognized amphibian on the continent, the Bullfrog is, among other things, an awesome predator. In its watery home it will eat other frogs and amphibians, fishes, small snakes, and even small songbirds and baby ducks -- if it has the chance.' as column: descript5_1_
10:44:18,453 DEBUG StringType: returning '/images/animals/bullfrog.jpg' as column: imageUrl1_
10:44:18,453 DEBUG DoubleType: returning '100.0' as column: price1_
10:44:18,468 DEBUG TimestampType: returning '2006-04-21 06:05:05' as column: dateOfBi8_1_
10:44:18,468 DEBUG LongType: returning '8' as column: classif10_1_
10:44:18,468 DEBUG LongType: returning '1' as column: version1_
10:44:18,468 DEBUG TwoPhaseLoad: Version: 1
10:44:18,468 DEBUG Loader: result set row: 4
10:44:18,468 DEBUG LongType: returning '30' as column: id1_
10:44:18,468 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Animal#30]
10:44:18,468 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Animal#30]
10:44:18,468 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Animal#30]
10:44:18,468 DEBUG TimestampType: returning '2007-01-17 13:43:46' as column: CREATED1_
10:44:18,468 DEBUG StringType: returning 'American Crocodile' as column: name1_
10:44:18,468 DEBUG EnumType: Returning 'MALE' as column gender1_
10:44:18,468 DEBUG StringType: returning 'Usually not more than 15 feet long in the U.S., this species may have reached 23 feet in South America. The adults diet includes crabs, fish (especially mullet), raccoons, waterbirds, and small neighborhood animals.' as column: descript5_1_
10:44:18,468 DEBUG StringType: returning '/images/animals/crocodile.jpg' as column: imageUrl1_
10:44:18,468 DEBUG DoubleType: returning '100.0' as column: price1_
10:44:18,468 DEBUG TimestampType: returning '2006-04-21 06:05:05' as column: dateOfBi8_1_
10:44:18,468 DEBUG LongType: returning '3' as column: classif10_1_
10:44:18,468 DEBUG LongType: returning '1' as column: version1_
10:44:18,468 DEBUG TwoPhaseLoad: Version: 1
10:44:18,468 DEBUG Loader: done processing result set (5 rows)
10:44:18,468 DEBUG AbstractBatcher: about to close ResultSet (open ResultSets: 1, globally: 1)
10:44:18,468 DEBUG AbstractBatcher: about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
10:44:18,468 DEBUG AbstractBatcher: closing statement
10:44:18,468 DEBUG ConnectionManager: aggressively releasing JDBC connection
10:44:18,468 DEBUG ConnectionManager: releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
10:44:18,468 DEBUG Loader: total objects hydrated: 5
10:44:18,468 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Animal#505]
10:44:18,468 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Classification#1]
10:44:18,468 DEBUG DefaultLoadEventListener: creating new proxy for entity
10:44:18,468 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Animal.countries#505]
10:44:18,468 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Animal#505]
10:44:18,468 DEBUG TransactionalCache: item already cached: org.lds.stack.petstore.model.Animal#505
10:44:18,468 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Animal#505]
10:44:18,468 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Animal#19]
10:44:18,468 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Classification#3]
10:44:18,468 DEBUG DefaultLoadEventListener: creating new proxy for entity
10:44:18,468 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,468 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Animal#19]
10:44:18,468 DEBUG TransactionalCache: item already cached: org.lds.stack.petstore.model.Animal#19
10:44:18,468 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Animal#19]
10:44:18,468 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Animal#15]
10:44:18,468 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Classification#5]
10:44:18,468 DEBUG DefaultLoadEventListener: creating new proxy for entity
10:44:18,468 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Animal.countries#15]
10:44:18,468 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Animal#15]
10:44:18,468 DEBUG TransactionalCache: item already cached: org.lds.stack.petstore.model.Animal#15
10:44:18,468 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Animal#15]
10:44:18,468 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Animal#25]
10:44:18,468 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Classification#8]
10:44:18,468 DEBUG DefaultLoadEventListener: creating new proxy for entity
10:44:18,468 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Animal.countries#25]
10:44:18,468 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Animal#25]
10:44:18,468 DEBUG TransactionalCache: item already cached: org.lds.stack.petstore.model.Animal#25
10:44:18,468 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Animal#25]
10:44:18,468 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Animal#30]
10:44:18,468 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Classification#3]
10:44:18,468 DEBUG DefaultLoadEventListener: entity proxy found in session cache
10:44:18,468 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Animal.countries#30]
10:44:18,468 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Animal#30]
10:44:18,468 DEBUG TransactionalCache: item already cached: org.lds.stack.petstore.model.Animal#30
10:44:18,468 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Animal#30]
10:44:18,468 DEBUG StatefulPersistenceContext: initializing non-lazy collections
10:44:18,468 DEBUG DefaultInitializeCollectionEventListener: initializing collection [org.lds.stack.petstore.model.Animal.countries#30]
10:44:18,468 DEBUG DefaultInitializeCollectionEventListener: checking second-level cache
10:44:18,468 DEBUG TransactionalCache: cache lookup: org.lds.stack.petstore.model.Animal.countries#30
10:44:18,468 DEBUG TransactionalCache: cache miss
10:44:18,468 DEBUG DefaultInitializeCollectionEventListener: collection not cached
10:44:18,468 DEBUG BasicCollectionLoader: Static select for collection org.lds.stack.petstore.model.Animal.countries: /* load collection org.lds.stack.petstore.model.Animal.countries */ select countries0_.ANIMAL_ID as ANIMAL1_1_, countries0_.COUNTRY_ID as COUNTRY2_1_, country1_.id as id3_0_, country1_.name as name3_0_ from ANIMAL_COUNTRY countries0_ left outer join Country country1_ on countries0_.COUNTRY_ID=country1_.id where countries0_.ANIMAL_ID in (select animal0_.id from Animal animal0_ where upper(animal0_.name) like upper(?) ) order by country1_.name asc
10:44:18,468 DEBUG AbstractBatcher: about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
10:44:18,468 DEBUG ConnectionManager: opening JDBC connection
10:44:18,468 DEBUG SQL:
/* load collection org.lds.stack.petstore.model.Animal.countries */ select
countries0_.ANIMAL_ID as ANIMAL1_1_,
countries0_.COUNTRY_ID as COUNTRY2_1_,
country1_.id as id3_0_,
country1_.name as name3_0_
from
ANIMAL_COUNTRY countries0_
left outer join
Country country1_
on countries0_.COUNTRY_ID=country1_.id
where
countries0_.ANIMAL_ID in (
select
animal0_.id
from
Animal animal0_
where
upper(animal0_.name) like upper(?)
)
order by
country1_.name asc
Hibernate:
/* load collection org.lds.stack.petstore.model.Animal.countries */ select
countries0_.ANIMAL_ID as ANIMAL1_1_,
countries0_.COUNTRY_ID as COUNTRY2_1_,
country1_.id as id3_0_,
country1_.name as name3_0_
from
ANIMAL_COUNTRY countries0_
left outer join
Country country1_
on countries0_.COUNTRY_ID=country1_.id
where
countries0_.ANIMAL_ID in (
select
animal0_.id
from
Animal animal0_
where
upper(animal0_.name) like upper(?)
)
order by
country1_.name asc
10:44:18,468 DEBUG AbstractBatcher: preparing statement
10:44:18,468 DEBUG Loader: bindNamedParameters() % -> 1 [1]
10:44:18,468 DEBUG StringType: binding '%' to parameter: 1
10:44:18,484 DEBUG AbstractBatcher: about to open ResultSet (open ResultSets: 0, globally: 0)
10:44:18,484 DEBUG Loader: result set contains (possibly empty) collection: [org.lds.stack.petstore.model.Animal.countries#25]
10:44:18,484 DEBUG CollectionLoadContext: uninitialized collection: initializing
10:44:18,484 DEBUG Loader: result set contains (possibly empty) collection: [org.lds.stack.petstore.model.Animal.countries#505]
10:44:18,484 DEBUG CollectionLoadContext: uninitialized collection: initializing
10:44:18,484 DEBUG Loader: result set contains (possibly empty) collection: [org.lds.stack.petstore.model.Animal.countries#15]
10:44:18,484 DEBUG CollectionLoadContext: uninitialized collection: initializing
10:44:18,484 DEBUG Loader: result set contains (possibly empty) collection: [org.lds.stack.petstore.model.Animal.countries#30]
10:44:18,484 DEBUG CollectionLoadContext: uninitialized collection: initializing
10:44:18,484 DEBUG Loader: result set contains (possibly empty) collection: [org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,484 DEBUG CollectionLoadContext: uninitialized collection: initializing
10:44:18,484 DEBUG Loader: processing result set
10:44:18,484 DEBUG Loader: result set row: 0
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG StringType: returning 'Afghanistan' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '19' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 1
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG LongType: returning '23' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#23]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 2
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG LongType: returning '24' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#24]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 3
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG LongType: returning '54' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#54]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 4
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG LongType: returning '55' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#55]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 5
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG LongType: returning '53' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#53]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 6
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG LongType: returning '52' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#52]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 7
10:44:18,484 DEBUG LongType: returning '1' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG LongType: returning '505' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#505]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '1' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,484 DEBUG Loader: result set row: 8
10:44:18,484 DEBUG LongType: returning '2' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG StringType: returning 'Albania' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '19' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '2' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG Loader: result set row: 9
10:44:18,484 DEBUG LongType: returning '2' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG LongType: returning '23' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#23]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '2' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#2]
10:44:18,484 DEBUG Loader: result set row: 10
10:44:18,484 DEBUG LongType: returning '4' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#4]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#4]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#4]
10:44:18,484 DEBUG StringType: returning 'American Samoa' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '19' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '4' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#4]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#4]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#4]
10:44:18,484 DEBUG Loader: result set row: 11
10:44:18,484 DEBUG LongType: returning '7' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#7]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#7]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#7]
10:44:18,484 DEBUG StringType: returning 'Anguilla' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '49' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#49]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '7' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#7]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#7]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#7]
10:44:18,484 DEBUG Loader: result set row: 12
10:44:18,484 DEBUG LongType: returning '8' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#8]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#8]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#8]
10:44:18,484 DEBUG StringType: returning 'Antarctica' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '49' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#49]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '8' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#8]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#8]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#8]
10:44:18,484 DEBUG Loader: result set row: 13
10:44:18,484 DEBUG LongType: returning '9' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#9]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#9]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#9]
10:44:18,484 DEBUG StringType: returning 'Antigua And Barbuda' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '49' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#49]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '9' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#9]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#9]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#9]
10:44:18,484 DEBUG Loader: result set row: 14
10:44:18,484 DEBUG LongType: returning '10' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG StringType: returning 'Argentina' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '19' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '10' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG Loader: result set row: 15
10:44:18,484 DEBUG LongType: returning '10' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG LongType: returning '20' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#20]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '10' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#10]
10:44:18,484 DEBUG Loader: result set row: 16
10:44:18,484 DEBUG LongType: returning '12' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#12]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#12]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#12]
10:44:18,484 DEBUG StringType: returning 'Aruba' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '18' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#18]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '12' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#12]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#12]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#12]
10:44:18,484 DEBUG Loader: result set row: 17
10:44:18,484 DEBUG LongType: returning '15' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#15]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#15]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#15]
10:44:18,484 DEBUG StringType: returning 'Azerbaijan' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '50' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#50]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '15' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#15]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#15]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#15]
10:44:18,484 DEBUG Loader: result set row: 18
10:44:18,484 DEBUG LongType: returning '16' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG StringType: returning 'Bahamas' as column: name3_0_
10:44:18,484 DEBUG LongType: returning '21' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#21]
10:44:18,484 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,484 DEBUG LongType: returning '16' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG Loader: result set row: 19
10:44:18,484 DEBUG LongType: returning '16' as column: id3_0_
10:44:18,484 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG LongType: returning '50' as column: ANIMAL1_1_
10:44:18,484 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#50]
10:44:18,484 DEBUG CollectionLoadContext: reading row
10:44:18,484 DEBUG LongType: returning '16' as column: COUNTRY2_1_
10:44:18,484 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#16]
10:44:18,484 DEBUG Loader: result set row: 20
10:44:18,500 DEBUG LongType: returning '17' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#17]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#17]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#17]
10:44:18,500 DEBUG StringType: returning 'Bahrain' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '50' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#50]
10:44:18,500 DEBUG CollectionLoadContext: reading row
10:44:18,500 DEBUG LongType: returning '17' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#17]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#17]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#17]
10:44:18,500 DEBUG Loader: result set row: 21
10:44:18,500 DEBUG LongType: returning '22' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#22]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#22]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#22]
10:44:18,500 DEBUG StringType: returning 'Belize' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '47' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#47]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '22' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#22]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#22]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#22]
10:44:18,500 DEBUG Loader: result set row: 22
10:44:18,500 DEBUG LongType: returning '27' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#27]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#27]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#27]
10:44:18,500 DEBUG StringType: returning 'Bosnia And Herzegovina' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '46' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#46]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '27' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#27]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#27]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#27]
10:44:18,500 DEBUG Loader: result set row: 23
10:44:18,500 DEBUG LongType: returning '29' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#29]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#29]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#29]
10:44:18,500 DEBUG StringType: returning 'Bouvet Island' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '45' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#45]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '29' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#29]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#29]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#29]
10:44:18,500 DEBUG Loader: result set row: 24
10:44:18,500 DEBUG LongType: returning '33' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#33]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#33]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#33]
10:44:18,500 DEBUG StringType: returning 'Bulgaria' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '43' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#43]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '33' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#33]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#33]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#33]
10:44:18,500 DEBUG Loader: result set row: 25
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG StringType: returning 'Canada' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '1' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#1]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 26
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '2' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#2]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 27
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '4' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#4]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 28
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '6' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#6]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 29
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '8' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#8]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 30
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '10' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#10]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 31
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '12' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#12]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 32
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '14' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#14]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 33
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '16' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#16]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 34
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '15' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#15]
10:44:18,500 DEBUG CollectionLoadContext: reading row
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 35
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '13' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#13]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 36
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '11' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#11]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 37
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '9' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#9]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 38
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '7' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#7]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 39
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '5' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#5]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 40
10:44:18,500 DEBUG LongType: returning '38' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG LongType: returning '3' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#3]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '38' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,500 DEBUG Loader: result set row: 41
10:44:18,500 DEBUG LongType: returning '40' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG StringType: returning 'Cayman Islands' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '18' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#18]
10:44:18,500 DEBUG CollectionLoadContext: reading row
10:44:18,500 DEBUG LongType: returning '40' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG Loader: result set row: 42
10:44:18,500 DEBUG LongType: returning '40' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG LongType: returning '20' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#20]
10:44:18,500 DEBUG CollectionLoadContext: reading row
10:44:18,500 DEBUG LongType: returning '40' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG Loader: result set row: 43
10:44:18,500 DEBUG LongType: returning '40' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG LongType: returning '23' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#23]
10:44:18,500 DEBUG CollectionLoadContext: reading row
10:44:18,500 DEBUG LongType: returning '40' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG Loader: result set row: 44
10:44:18,500 DEBUG LongType: returning '40' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG LongType: returning '19' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,500 DEBUG CollectionLoadContext: reading row
10:44:18,500 DEBUG LongType: returning '40' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#40]
10:44:18,500 DEBUG Loader: result set row: 45
10:44:18,500 DEBUG LongType: returning '41' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#41]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#41]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#41]
10:44:18,500 DEBUG StringType: returning 'Central African Republic' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '22' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#22]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '41' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#41]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#41]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#41]
10:44:18,500 DEBUG Loader: result set row: 46
10:44:18,500 DEBUG LongType: returning '44' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG StringType: returning 'China' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '36' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#36]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '44' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG Loader: result set row: 47
10:44:18,500 DEBUG LongType: returning '44' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG LongType: returning '39' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#39]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '44' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#44]
10:44:18,500 DEBUG Loader: result set row: 48
10:44:18,500 DEBUG LongType: returning '45' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#45]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#45]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#45]
10:44:18,500 DEBUG StringType: returning 'Christmas Island' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '21' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#21]
10:44:18,500 DEBUG CollectionLoadContext: reading row
10:44:18,500 DEBUG LongType: returning '45' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#45]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#45]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#45]
10:44:18,500 DEBUG Loader: result set row: 49
10:44:18,500 DEBUG LongType: returning '46' as column: id3_0_
10:44:18,500 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#46]
10:44:18,500 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#46]
10:44:18,500 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#46]
10:44:18,500 DEBUG StringType: returning 'Cocos (Keeling); Islands' as column: name3_0_
10:44:18,500 DEBUG LongType: returning '38' as column: ANIMAL1_1_
10:44:18,500 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#38]
10:44:18,500 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,500 DEBUG LongType: returning '46' as column: COUNTRY2_1_
10:44:18,500 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#46]
10:44:18,500 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#46]
10:44:18,500 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#46]
10:44:18,515 DEBUG Loader: result set row: 50
10:44:18,515 DEBUG LongType: returning '47' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#47]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#47]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#47]
10:44:18,515 DEBUG StringType: returning 'Colombia' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '38' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#38]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '47' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#47]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#47]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#47]
10:44:18,515 DEBUG Loader: result set row: 51
10:44:18,515 DEBUG LongType: returning '60' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#60]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#60]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#60]
10:44:18,515 DEBUG StringType: returning 'Dominica' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '35' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#35]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '60' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#60]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#60]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#60]
10:44:18,515 DEBUG Loader: result set row: 52
10:44:18,515 DEBUG LongType: returning '63' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#63]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#63]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#63]
10:44:18,515 DEBUG StringType: returning 'Ecuador' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '44' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#44]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '63' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#63]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#63]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#63]
10:44:18,515 DEBUG Loader: result set row: 53
10:44:18,515 DEBUG LongType: returning '67' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#67]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#67]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#67]
10:44:18,515 DEBUG StringType: returning 'Eritrea' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '51' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#51]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '67' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#67]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#67]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#67]
10:44:18,515 DEBUG Loader: result set row: 54
10:44:18,515 DEBUG LongType: returning '77' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#77]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#77]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#77]
10:44:18,515 DEBUG StringType: returning 'French Southern Territories' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '40' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#40]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '77' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#77]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#77]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#77]
10:44:18,515 DEBUG Loader: result set row: 55
10:44:18,515 DEBUG LongType: returning '88' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG StringType: returning 'Guam' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '22' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#22]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '88' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG Loader: result set row: 56
10:44:18,515 DEBUG LongType: returning '88' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG LongType: returning '37' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#37]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '88' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#88]
10:44:18,515 DEBUG Loader: result set row: 57
10:44:18,515 DEBUG LongType: returning '90' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG StringType: returning 'Guinea' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '23' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#23]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '90' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG Loader: result set row: 58
10:44:18,515 DEBUG LongType: returning '90' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG LongType: returning '41' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#41]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '90' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#90]
10:44:18,515 DEBUG Loader: result set row: 59
10:44:18,515 DEBUG LongType: returning '91' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#91]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#91]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#91]
10:44:18,515 DEBUG StringType: returning 'Guinea-Bissau' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '42' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#42]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '91' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#91]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#91]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#91]
10:44:18,515 DEBUG Loader: result set row: 60
10:44:18,515 DEBUG LongType: returning '98' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#98]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#98]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#98]
10:44:18,515 DEBUG StringType: returning 'Hungary' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '47' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#47]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '98' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#98]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#98]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#98]
10:44:18,515 DEBUG Loader: result set row: 61
10:44:18,515 DEBUG LongType: returning '99' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#99]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#99]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#99]
10:44:18,515 DEBUG StringType: returning 'Iceland' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '33' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#33]
10:44:18,515 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,515 DEBUG LongType: returning '99' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#99]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#99]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#99]
10:44:18,515 DEBUG Loader: result set row: 62
10:44:18,515 DEBUG LongType: returning '100' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#100]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#100]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#100]
10:44:18,515 DEBUG StringType: returning 'India' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '24' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#24]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '100' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#100]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#100]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#100]
10:44:18,515 DEBUG Loader: result set row: 63
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG StringType: returning 'Mexico' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '1' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#1]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 64
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '16' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#16]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 65
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '15' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#15]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 66
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '14' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#14]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 67
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '13' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#13]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 68
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '12' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#12]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 69
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '11' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#11]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 70
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '10' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#10]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 71
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '9' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#9]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 72
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '8' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#8]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 73
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '7' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#7]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 74
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '6' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#6]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 75
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '5' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#5]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 76
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '4' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#4]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 77
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '3' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#3]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 78
10:44:18,515 DEBUG LongType: returning '139' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG LongType: returning '2' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#2]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '139' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,515 DEBUG Loader: result set row: 79
10:44:18,515 DEBUG LongType: returning '150' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#150]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#150]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#150]
10:44:18,515 DEBUG StringType: returning 'Nepal' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '22' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#22]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '150' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#150]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#150]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#150]
10:44:18,515 DEBUG Loader: result set row: 80
10:44:18,515 DEBUG LongType: returning '214' as column: id3_0_
10:44:18,515 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#214]
10:44:18,515 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#214]
10:44:18,515 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#214]
10:44:18,515 DEBUG StringType: returning 'Tonga' as column: name3_0_
10:44:18,515 DEBUG LongType: returning '21' as column: ANIMAL1_1_
10:44:18,515 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#21]
10:44:18,515 DEBUG CollectionLoadContext: reading row
10:44:18,515 DEBUG LongType: returning '214' as column: COUNTRY2_1_
10:44:18,515 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#214]
10:44:18,515 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#214]
10:44:18,515 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#214]
10:44:18,515 DEBUG Loader: result set row: 81
10:44:18,515 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,531 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,531 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#224]
10:44:18,531 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,531 DEBUG StringType: returning 'United Kingdom' as column: name3_0_
10:44:18,531 DEBUG LongType: returning '1' as column: ANIMAL1_1_
10:44:18,531 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#1]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 82
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '20' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#20]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 83
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '19' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#19]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 84
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '16' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#16]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 85
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '15' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#15]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 86
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '14' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#14]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 87
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '13' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#13]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 88
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '12' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#12]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 89
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,546 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG LongType: returning '11' as column: ANIMAL1_1_
10:44:18,546 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#11]
10:44:18,546 DEBUG CollectionLoadContext: reading row
10:44:18,546 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,546 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,546 DEBUG Loader: result set row: 90
10:44:18,546 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '10' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#10]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 91
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '9' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#9]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 92
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '57' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#57]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 93
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '56' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#56]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 94
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '51' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#51]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 95
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '35' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#35]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 96
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '34' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#34]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 97
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '32' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#32]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 98
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '30' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#30]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 99
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '29' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#29]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 100
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '28' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#28]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 101
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '27' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#27]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 102
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '26' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#26]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 103
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '25' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#25]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 104
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '48' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#48]
10:44:18,562 DEBUG CollectionLoadContext: new collection: instantiating
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 105
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '46' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#46]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 106
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '8' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#8]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 107
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '7' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#7]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 108
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '6' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#6]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 109
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '5' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#5]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 110
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '4' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#4]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 111
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '3' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#3]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 112
10:44:18,562 DEBUG LongType: returning '224' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG LongType: returning '2' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#2]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '224' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,562 DEBUG Loader: result set row: 113
10:44:18,562 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG Loader: Initializing object from ResultSet: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG AbstractEntityPersister: Hydrating entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG StringType: returning 'United States' as column: name3_0_
10:44:18,562 DEBUG LongType: returning '1' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#1]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG Loader: result set row: 114
10:44:18,562 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,562 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG LongType: returning '16' as column: ANIMAL1_1_
10:44:18,562 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#16]
10:44:18,562 DEBUG CollectionLoadContext: reading row
10:44:18,562 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,562 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,562 DEBUG Loader: result set row: 115
10:44:18,562 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '15' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#15]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 116
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '14' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#14]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 117
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '13' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#13]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 118
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '12' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#12]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 119
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '11' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#11]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 120
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '10' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#10]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 121
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '9' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#9]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 122
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '8' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#8]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 123
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '7' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#7]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 124
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '6' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#6]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 125
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '5' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#5]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 126
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '4' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#4]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 127
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '3' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#3]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: result set row: 128
10:44:18,578 DEBUG LongType: returning '225' as column: id3_0_
10:44:18,578 DEBUG Loader: result row: EntityKey[org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG LongType: returning '2' as column: ANIMAL1_1_
10:44:18,578 DEBUG Loader: found row of collection: [org.lds.stack.petstore.model.Animal.countries#2]
10:44:18,578 DEBUG CollectionLoadContext: reading row
10:44:18,578 DEBUG LongType: returning '225' as column: COUNTRY2_1_
10:44:18,578 DEBUG DefaultLoadEventListener: loading entity: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: attempting to resolve: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG DefaultLoadEventListener: resolved object in session cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,578 DEBUG Loader: done processing result set (129 rows)
10:44:18,578 DEBUG AbstractBatcher: about to close ResultSet (open ResultSets: 1, globally: 1)
10:44:18,578 DEBUG AbstractBatcher: about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
10:44:18,578 DEBUG AbstractBatcher: closing statement
10:44:18,578 DEBUG ConnectionManager: aggressively releasing JDBC connection
10:44:18,578 DEBUG ConnectionManager: releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
10:44:18,578 DEBUG Loader: total objects hydrated: 37
10:44:18,578 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#1]
10:44:18,578 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#1]
10:44:18,578 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#1]
10:44:18,578 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#1
10:44:18,578 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#1]
10:44:18,578 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#2]
10:44:18,578 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#2]
10:44:18,578 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#2]
10:44:18,578 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#2
10:44:18,578 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#2]
10:44:18,578 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#4]
10:44:18,578 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#4]
10:44:18,578 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#4]
10:44:18,578 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#4
10:44:18,578 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#4]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#7]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#7]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#7]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#7
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#7]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#8]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#8]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#8]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#8
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#8]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#9]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#9]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#9]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#9
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#9]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#10]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#10]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#10]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#10
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#10]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#12]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#12]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#12]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#12
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#12]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#15]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#15]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#15]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#15
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#15]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#16]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#16]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#16]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#16
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#16]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#17]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#17]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#17]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#17
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#17]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#22]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#22]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#22]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#22
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#22]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#27]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#27]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#27]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#27
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#27]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#29]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#29]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#29]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#29
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#29]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#33]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#33]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#33]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#33
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#33]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#38]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#38]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#38]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#38
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#38]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#40]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#40]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#40]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#40
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#40]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#41]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#41]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#41]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#41
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#41]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#44]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#44]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#44]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#44
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#44]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#45]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#45]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#45]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#45
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#45]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#46]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#46]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#46]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#46
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#46]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#47]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#47]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#47]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#47
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#47]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#60]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#60]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#60]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#60
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#60]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#63]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#63]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#63]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#63
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#63]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#67]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#67]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#67]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#67
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#67]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#77]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#77]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#77]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#77
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#77]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#88]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#88]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#88]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#88
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#88]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#90]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#90]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#90]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#90
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#90]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#91]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#91]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#91]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#91
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#91]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#98]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#98]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#98]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#98
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#98]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#99]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#99]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#99]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#99
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#99]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#100]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#100]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#100]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#100
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#100]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#139]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#139]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#139]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#139
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#139]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#150]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#150]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#150]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#150
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#150]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#214]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#214]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#214]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#214
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#214]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#224]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#224]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#224]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#224
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#224]
10:44:18,593 DEBUG TwoPhaseLoad: resolving associations for [org.lds.stack.petstore.model.Country#225]
10:44:18,593 DEBUG CollectionLoadContext: creating collection wrapper:[org.lds.stack.petstore.model.Country.animals#225]
10:44:18,593 DEBUG TwoPhaseLoad: adding entity to second-level cache: [org.lds.stack.petstore.model.Country#225]
10:44:18,593 DEBUG ReadOnlyCache: item already cached: org.lds.stack.petstore.model.Country#225
10:44:18,593 DEBUG TwoPhaseLoad: done materializing entity [org.lds.stack.petstore.model.Country#225]
10:44:18,593 DEBUG CollectionLoadContext: 56 collections were found in result set for role: org.lds.stack.petstore.model.Animal.countries
10:44:18,593 DEBUG CollectionLoadContext: Caching collection: [org.lds.stack.petstore.model.Animal.countries#46]
10:44:18,593 DEBUG CacheSynchronization: transaction after completion callback, status: 4
10:44:18,593 DEBUG JDBCContext: after transaction completion
10:44:18,593 DEBUG SessionImpl: after transaction completion
10:44:18,593 DEBUG JDBCContext: TransactionFactory reported no active transaction; Synchronization not registered
10:44:18,593 DEBUG JDBCContext: TransactionFactory reported no active transaction; Synchronization not registered
10:44:18,593 DEBUG JDBCContext: TransactionFactory reported no active transaction; Synchronization not registered
10:44:18,593 DEBUG JDBCContext: TransactionFactory reported no active transaction; Synchronization not registered
Jan 29, 2007 10:44:18 AM com.sun.facelets.FaceletViewHandler handleRenderException
SEVERE: Error Rendering View[/pet-search.xhtml]
javax.faces.FacesException: javax.el.ELException: /pet-search.xhtml @59,97 rendered="#{empty petSearchBean.currentResults}": java.lang.NullPointerException
at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:387)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:878)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:890)
at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:571)
at org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:101)
at org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:222)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:75)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:213)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter.doFilterInternal(OpenEntityManagerInViewFilter.java:112)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:77)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:264)
at org.acegisecurity.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:107)
at org.acegisecurity.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:72)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274)
at org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:110)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274)
at org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274)
at org.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:81)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274)
at org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:217)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274)
at org.acegisecurity.ui.logout.LogoutFilter.doFilter(LogoutFilter.java:106)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274)
at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:229)
at org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274)
at org.acegisecurity.util.FilterChainProxy.doFilter(FilterChainProxy.java:148)
at org.acegisecurity.util.FilterToBeanProxy.doFilter(FilterToBeanProxy.java:98)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:595)
Caused by: javax.el.ELException: /pet-search.xhtml @59,97 rendered="#{empty petSearchBean.currentResults}": java.lang.NullPointerException
at com.sun.facelets.el.TagValueExpression.getValue(TagValueExpression.java:76)
at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:384)
... 55 more
Caused by: java.lang.NullPointerException
at org.hibernate.engine.CollectionLoadContext.addCollectionToCache(CollectionLoadContext.java:306)
at org.hibernate.engine.CollectionLoadContext.endLoadingCollection(CollectionLoadContext.java:203)
at org.hibernate.engine.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:268)
at org.hibernate.engine.CollectionLoadContext.endLoadingCollections(CollectionLoadContext.java:249)
at org.hibernate.loader.Loader.endCollectionLoad(Loader.java:866)
at org.hibernate.loader.Loader.initializeEntitiesAndCollections(Loader.java:853)
at org.hibernate.loader.Loader.doQuery(Loader.java:717)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
at org.hibernate.loader.Loader.loadCollectionSubselect(Loader.java:2057)
at org.hibernate.loader.collection.SubselectCollectionLoader.initialize(SubselectCollectionLoader.java:58)
at org.hibernate.persister.collection.AbstractCollectionPersister.initialize(AbstractCollectionPersister.java:565)
at org.hibernate.event.def.DefaultInitializeCollectionEventListener.onInitializeCollection(DefaultInitializeCollectionEventListener.java:60)
at org.hibernate.impl.SessionImpl.initializeCollection(SessionImpl.java:1716)
at org.hibernate.collection.AbstractPersistentCollection.forceInitialization(AbstractPersistentCollection.java:454)
at org.hibernate.engine.StatefulPersistenceContext.initializeNonLazyCollections(StatefulPersistenceContext.java:784)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:229)
at org.hibernate.loader.Loader.doList(Loader.java:2211)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2095)
at org.hibernate.loader.Loader.list(Loader.java:2090)
at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:375)
at org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:338)
at org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:172)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1121)
at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:64)
at org.lds.stack.serviceproxy.jpa.hibernate.AbstractQueryFindExecutor.executeQuery(AbstractQueryFindExecutor.java:44)
at org.lds.stack.serviceproxy.jpa.FindInterceptor$1.doInJpa(FindInterceptor.java:43)
at org.springframework.orm.jpa.JpaTemplate.execute(JpaTemplate.java:191)
at org.springframework.orm.jpa.JpaTemplate.execute(JpaTemplate.java:154)
at org.lds.stack.serviceproxy.jpa.FindInterceptor.invoke(FindInterceptor.java:39)
at org.lds.stack.serviceproxy.ServiceProxyCglibInterceptor.intercept(ServiceProxyCglibInterceptor.java:48)
at org.lds.stack.petstore.service.AbstractAnimalService$$EnhancerByCGLIB$$3d59b0a4.searchForAnimals(<generated>)
at org.lds.stack.petstore.service.AnimalService$$FastClassByCGLIB$$5fa987b7.invoke(<generated>)
at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:163)
at org.springframework.aop.framework.Cglib2AopProxy$CglibMethodInvocation.invokeJoinpoint(Cglib2AopProxy.java:675)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:154)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:107)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:616)
at org.lds.stack.petstore.service.AbstractAnimalService$$EnhancerByCGLIB$$74b4a0c2.searchForAnimals(<generated>)
at org.lds.stack.petstore.view.bean.PetSearchBean.getCurrentResults(PetSearchBean.java:39)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at javax.el.BeanELResolver.getValue(BeanELResolver.java:218)
at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:135)
at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:64)
at com.sun.el.parser.AstValue.getValue(AstValue.java:118)
at com.sun.el.parser.AstEmpty.getValue(AstEmpty.java:49)
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
at com.sun.facelets.el.TagValueExpression.getValue(TagValueExpression.java:71)
... 56 more
--
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....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-5019) @TableGenerator throws Unsupported exception - error performing isolated work
by Rohini (JIRA)
@TableGenerator throws Unsupported exception - error performing isolated work
-----------------------------------------------------------------------------
Key: HHH-5019
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-5019
Project: Hibernate Core
Issue Type: Bug
Affects Versions: 3.3.1, 3.3.0.SP1, 3.3.0.GA, 3.3.0.CR2, 3.3.0.CR1, 3.2.7, 3.2.6, 3.2.5, 3.2.4.sp1, 3.2.4, 3.2.3, 3.2.2, 3.2.1
Environment: Hibernate Core 3.3.1, MySQL, Websphere 6.1 with EJB3.0 Feature pack
Reporter: Rohini
While implementing GenerationType.TABLE strategy with Hibernate as the persistence provider, id generation throws
javax.persistence.PersistenceException: org.hibernate.HibernateException: error performing isolated work
[3/18/10 14:40:41:533 IST] 0000002d SystemErr R at org.hibernate.ejb.AbstractEntityManagerImpl.throwPersistenceException(AbstractEntityManagerImpl.java:614)
--------------------------------------------------------------
3/18/10 14:40:41:533 IST] 0000002d SystemErr R Caused by: org.hibernate.HibernateException: error performing isolated work
at org.hibernate.engine.transaction.Isolater$JtaDelegate.delegateWork(Isolater.java:166)
at org.hibernate.engine.transaction.Isolater.doIsolatedWork(Isolater.java:64)
at org.hibernate.engine.TransactionHelper.doWorkInNewTransaction(TransactionHelper.java:74)
at org.hibernate.id.MultipleHiLoPerTableGenerator.generate(MultipleHiLoPerTableGenerator.java:210)
Looking at the
Isolater.doIsolatedWork( work, session );, implementation
try {
// First we need to suspend any current JTA transaction and obtain
// a JDBC connection
surroundingTransaction = transactionManager.suspend();
if ( log.isDebugEnabled() ) {
log.debug( "surrounding JTA transaction suspended [" + surroundingTransaction + "]" );
}
This happnes only with WebsphereExtendedTransactionManagerLookup as the hibernate.transaction.manager_lookup_class.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[Hibernate-JIRA] Created: (HHH-5057) ScrollableResults does not fetch many-to-many collections
by Jérôme Van Der Linden (JIRA)
ScrollableResults does not fetch many-to-many collections
---------------------------------------------------------
Key: HHH-5057
URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-5057
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 3.3.2
Reporter: Jérôme Van Der Linden
Priority: Blocker
I have a many-to-many relation between two objects :
{code:title=Project.java|borderStyle=solid}
@Entity
public class Project {
private List<Viperson> managers;
@ManyToMany(targetEntity = Viperson.class)
@JoinTable(name = "PRJMANAGER", joinColumns = @JoinColumn(name = "PROJECTID", nullable = false), inverseJoinColumns = @JoinColumn(name = "VIPID", nullable = false))
public List<Viperson> getManagers() {
return managers;
}
}
{code}
{code:title=Viperson.java|borderStyle=solid}
@Entity
public class Viperson {
private List<Project> projects;
@ManyToMany(mappedBy = "managers", targetEntity = Project.class)
public List<Project> getProjects() {
return projects;
}
}
{code}
And the following test (actually, it is a code from spring batch HibernateCursorItemReader I put in a testcase) :
{code}
@Test
public void testSelectAll() {
StatelessSession statelessSession = sessionFactory.openStatelessSession();
ScrollableResults cursor = statelessSession.createQuery("from Project").scroll();
Object[] data = null;
if (cursor.next()) {
data = cursor.get();
}
}
{code}
data contains a {{Project}} but {{managers}} field is *null*, +even if I add eager fetching+. I have also a {{OneToMany}} in the {{Project}} class. This one is well loaded (i have a {{PersistentBag}}).
Is there anything I miss ? I suspect a bug on that.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 3 months