Andrea Boriero
4a15d23aec
HHH-10513 - Add test for issue
2016-05-26 10:35:17 +01:00
Vlad Mihalcea
d70c2c04ef
HHH-10773 - Add a toString() implementation to the READ_WRITE Ehcache Item object
2016-05-26 11:01:51 +03:00
Vlad Mihalcea
2ba9b98cbc
HHH-10772 - RuntimeException during releaseStatements causes JDBC connection not to be closed
2016-05-26 10:35:10 +03:00
Gail Badner
bec1ff8f83
HHH-10766 : Correct test to use Session.createSQLQuery (session.createNativeQuery API is 5.2+)
2016-05-25 15:20:10 -07:00
Dgray16
54d913e6ba
HHH-10766 Resolve mapping 'type' parameter error
...
(cherry picked from commit 50b7882663
)
2016-05-25 15:12:54 -07:00
Vlad Mihalcea
1c4db6f1c0
HHH-10052 - documentation about hashCode and equals not up to date
2016-05-25 13:11:27 +03:00
Gail Badner
08a51523a2
HHH-10756 : Move tests to hibernate-entitymanager
2016-05-24 17:01:55 -07:00
Gail Badner
29710c2d5a
HHH-10756 : StoredProcedureQuery with OUT param fails with Oracle when using named parameters
...
(cherry picked from commit 92dfd69937
)
2016-05-24 16:57:39 -07:00
Vincent Ricard
212552576d
HHH-10765 Some links in the user guide are broken
...
HHH-10522 Invalid reference to naming chapter in user guide
HHH-10524 Invalid reference wrt composite identifiers
HHH-10525 Invalid reference to bytecode enhancement in User Guide
2016-05-23 18:06:38 +03:00
Vincent Ricard
ab587d0bdd
HHH-10535 Documentation: hibernate.order_updates configuration property
2016-05-23 08:39:50 +03:00
Steve Ebersole
0f918b4d42
HHH-10708 - Accessing a lazy collection in an enhanced class deletes it afterwards
...
(cherry picked from commit 0e1b79d2b5
)
Conflicts:
hibernate-core/src/main/java/org/hibernate/engine/internal/Collections.java
HHH-10708 : Corrections due to backporting
2016-05-20 16:09:09 -07:00
barreiro
9768cf21c5
HHH-10708 - Test cases
2016-05-20 14:59:34 -07:00
Vlad Mihalcea
f7e3dc16cb
Fix layout issue in documentation due to improper use of spacing for preformatted text
2016-05-18 10:08:03 +03:00
Andrea Boriero
a1c134dd50
HHH-1237 - Fix check style failure
2016-05-17 17:18:05 +01:00
Andrea Boriero
418c87f9cb
HHH-10691 - Fix SchemaScriptFileGenerationTest failing with PostgreSQL
2016-05-13 17:06:23 +01:00
Vlad Mihalcea
da347c6d0c
HHH-10691 - Fix tests failing when switching to PostgreSQL
...
HHH-10696 - Add a new CatalogFilterTest
2016-05-13 15:29:04 +01:00
Andrea Boriero
a8deb5f1e0
HHH-10526 - Fix SchemaMigrator does not apply SchemaFilter on foreign keys
2016-05-13 09:48:00 +01:00
Andrea Boriero
f34c50c411
HHH-10605 - Fix HSQLDialect dosn't use 'if exists' when dropping sequences
2016-05-13 09:37:11 +01:00
Andrea Boriero
d97bd9722f
HHH-10605 - Add test for issue
2016-05-13 09:37:04 +01:00
Chris Cranford
82fe5926bb
HHH-10734 - Fix envers creating unnecessary audit rows when array field types used.
2016-05-12 15:57:11 -05:00
Chris Cranford
d6eeb509e1
Removed test libraries.
2016-05-12 08:45:34 -05:00
Chris Cranford
2b6ab8e8bb
HHH-8507 - Fix SQL Server 2005 limit handler to be tolerant of carriage returns.
2016-05-12 08:27:47 -05:00
Andrea Boriero
ef6c9266e6
HHH-10684 - Fix No target script generated for update action when using schema-generation
2016-05-12 11:07:41 +01:00
Andrea Boriero
d6ea43d6c9
HHH-10684 - Add test for issue
2016-05-12 11:02:37 +01:00
Andrea Boriero
b6d010c07a
HHH-10678 - Fix hbm hibernate-mapping's schema attribute is ignored
2016-05-12 10:15:30 +01:00
Andrea Boriero
d6db50897a
HHH-10678 - Add test for issue
2016-05-12 10:14:26 +01:00
Andrea Boriero
55ce254d2d
HHH-10718 - Fix Underscore in table name can result in SchemaExtractionException: More than one table found
2016-05-12 09:54:17 +01:00
Andrea Boriero
54ffced4dc
HHH-10710 - Add test for issue
2016-05-12 09:47:21 +01:00
Andrea Boriero
2a79ebe165
HHH-10635 - Fix EntityManager.isOpen() should respect status of Session
2016-05-12 09:01:29 +01:00
Andrea Boriero
e8dec1a062
HHH-10635 - Add test for issue
2016-05-12 09:01:22 +01:00
Andrea Boriero
a0d6412ca6
HHH-10601 - Fix Persistence.generateSchema - the output file contains duplicated DDL statements
2016-05-12 08:49:49 +01:00
Andrea Boriero
729b03e20b
HHH-10601 - Add test for issue
2016-05-12 08:49:38 +01:00
Naros
7b8d785b7c
HHH-10706 - Correct native queries that fail when using a case-sensitive database dialect.
2016-05-06 20:16:58 -05:00
Michael Schnell
7236123b0c
HHH-1237 Escaping colon in queries
2016-04-26 10:09:43 +03:00
Gustavo Adolfo Rodríguez Libreros
01430c5be1
HHH-9570: Auto-detect SQL Server 2014
...
Copying a previous workaround for the same issue: https://github.com/hibernate/hibernate-orm/pull/395
- Previously, SQL Server version 12 (SQL Server 2014) was an unknown version, resulting in the SQLServerDialect
- Add version 12 to the switch statement so that SQLServer2012Dialect is now returned by default, as SQL Server 2014 is much more similar to SQL Server 2012 than SQL Server 2000
- Add test case
- Add Oracle and SQL Server environments for testing purpose
2016-04-25 17:39:51 +03:00
Karel Maesen
7ad1c59876
Updates Spatial Documentation
2016-04-19 08:30:52 +03:00
Karel Maesen
1bd940b47e
HHH-10410 - Co-linear points are causing an exception
...
Problem resolved in geolatte-geom 1.0.2, so upgraded dependency.
2016-04-17 17:06:03 +02:00
Martin Simka
350522b505
[HHH-10290] ignore environment property hibernate.jdbc.batch_versioned_data in BatchVersionedDataConfigTest
2016-04-07 10:27:19 +03:00
Martin Simka
3df3e81c5f
[HHH-10587] skip NationalizedIgnoreCaseTest on db2 and postgresql(plus) as they don't support nString
2016-04-07 10:10:45 +03:00
Jan Martiska
7769feec25
HHH-10598 - Oracle JDBC driver can't handle entities with a one-character name in some cases
2016-04-06 17:52:16 +03:00
Martin Simka
5a018fce44
[HHH-10588] use H2Dialect in ConnectionsReleaseTest
2016-04-06 17:33:35 +03:00
Danny02
00db5af3db
HHH-10612 - Check for support of RefCursor in Java 8
2016-04-06 17:17:00 +03:00
Martin Simka
219ee94ad3
[HHH-10640] fix wrong expected statement on DB2
2016-04-06 16:02:14 +03:00
Vlad Mihalcea
de4637d592
Remove Diamond Operator from test cases
2016-04-06 13:25:24 +03:00
Zhenlei Huang
52719397b3
HHH-10649 - When 2LC enabled, flush session and then refresh entity cause dirty read in another session / transaction
2016-04-06 12:49:03 +03:00
Martin Simka
a7694b5225
[HHH-10641] Fix identifier is too long exception for test LongVarcharValidationTest
2016-04-05 18:04:58 +03:00
Zhenlei Huang
397d3d7de9
HHH-10652 - The HHH-10631 test makes wrong assertion
2016-04-05 09:34:40 +03:00
Vlad Mihalcea
9570f110a1
User Guide grammatical corrections
2016-03-31 15:33:15 +03:00
Vlad Mihalcea
da5aae74e6
Add JPA-related configuration properties in the new User Guide
2016-03-31 12:23:08 +03:00
Vlad Mihalcea
985229f9a7
HHH-10662 - Fix inconsistencies between quoting-related configuration properties JavaDocs and their default values assigned at the code level
2016-03-31 09:09:02 +03:00