hibernate-orm
hibernate-orm copied to clipboard
Hibernate's core Object/Relational Mapping functionality
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...
Allow applying conversions to embeddable values https://hibernate.atlassian.net/browse/HHH-15290
Adding a test-case which showcases the problem described in HHH-15271.
Added failing Testcase based in most recent version of 5.4 branch: issue Descroption, see: https://hibernate.atlassian.net/browse/HHH-15257
HHH-15228 "RoundFunction" which extends StandardSQLFunction to return BigDecimal - support for round() function in H2 database to return BigDecimal if argument is BigDecimal - By default, it would return Double
Issue: [HHH-15186](https://hibernate.atlassian.net/browse/HHH-15186)
https://hibernate.atlassian.net/browse/HHH-15159 Not sure if executing `CollectionRemoveAction` first can cause any issue.
The missing blank before 'as' resultet in an invalid SQL expression.
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...