Nathan Xu

Results 8 issues of Nathan Xu

https://hibernate.atlassian.net/browse/HHH-15045 For the following simple OneToOne case: ``` @Entity class User { @Id int id; @OneToOne(mappedBy = "user") Profile profile; } @Entity class Profile { @Id int id; @OneToOne User...

https://hibernate.atlassian.net/browse/HHH-14631 Sakila is a well-known MySQL sample database modelling dvd rental store: https://dev.mysql.com/doc/sakila/en/ A HR example database in Oracle is also included. We might consider other sample databases as per...

6.0

https://hibernate.atlassian.net/browse/HHH-14200 The root cause is we didn't invoke 'initText()' for collection type in `DotNode#resolve()` as in the following snippet: ``` else if ( propertyType.isEntityType() ) { // The property is...

https://hibernate.atlassian.net/browse/HHH-18319 It seems a mis-statement about auto-flush in event of native Session and native SQL. I might be wrong but it is so confusing.

https://hibernate.atlassian.net/browse/HHH-18318 seems we reuse the link URL as the link text, which is sloppy and inappropriate

https://hibernate.atlassian.net/browse/HHH-18320 Not sure what happened, but it seems the Locking chapter lacks attention

https://hibernate.atlassian.net/browse/HHH-18385 ``` public void logSlowQuery(final Statement statement, final long startTimeNanos, final JdbcSessionContext context) { if ( logSlowQuery < 1 ) { return; } if ( startTimeNanos logSlowQuery ) { final...

https://hibernate.atlassian.net/browse/HHH-16283 A straightforward implementation. Two challenges stand out: - native query parameter expanding - LimitHandler needs to be refactored to make it possible to be parameterized The second concern is...