Nathan Xu
3a69b74894
HHH-13456 refactor ForeignGenerator to allow for the possibility of StatelessSession
2019-12-11 17:37:31 -06:00
Nathan Xu
8ce1404754
HHH-13644 fix the NPE by override ProcedureCallImpl's 'getResultStream()' method.
2019-12-11 17:23:22 -06:00
Andrew Guibert
56561f4b4b
HHH-13767 Remove mention of Oracle and DB2 not being in MC
...
Both Oracle and DB2 JDBC drivers are now available in MC so the statement is no longer accurate
2019-12-05 20:41:58 +00:00
Andrea Boriero
dba8d70e94
5.4.10
2019-12-05 17:52:29 +00:00
Andrea Boriero
1a1631b57b
5.4.10
2019-12-05 16:36:34 +00:00
Jan-Willem Gmelig Meyling
a6b924ffe7
HHH-9301 Fix test under PostgreSQL
2019-12-05 14:00:01 +00:00
Andrea Boriero
963a516ea8
Revert "HHH-13752 - Test and fix deletion of entities with many-to-many assocations using non-primary keys for join table"
...
This reverts commit 58dd469e4c
.
2019-12-05 12:34:27 +00:00
Andrea Boriero
e924d55fdf
Revert "HHH-13752 - Deletion of entities with many-to-many assocations using non-primary keys for join table"
...
This reverts commit 11455f3467
.
2019-12-05 12:34:10 +00:00
Gail Badner
99868fb5f9
HHH-13355 : StaleStateException for updates to optional secondary table using saveOrUpdate
2019-12-05 12:05:24 +00:00
Gail Badner
69dad5fda5
HHH-13355 : test case
2019-12-05 12:05:24 +00:00
Gail Badner
6ce7831f77
HHH-13365 : Entities in joined subclass table are not inserted with batch size > 0 using sequence-identity ID generator
2019-12-05 11:36:04 +00:00
Gail Badner
7d11649d99
HHH-13365 : Added test case
2019-12-05 11:36:04 +00:00
Andrea Boriero
11455f3467
HHH-13752 - Deletion of entities with many-to-many assocations using non-primary keys for join table
2019-12-05 10:18:23 +00:00
Christian Beikov
58dd469e4c
HHH-13752 - Test and fix deletion of entities with many-to-many assocations using non-primary keys for join table
2019-12-05 10:05:16 +00:00
Andrea Boriero
a133aff97f
HHH-13608 Fix failing tests
2019-12-05 09:25:32 +00:00
Davide D'Alto
ca782f64b2
HHH-13755 Update Hibernate Gradle plugin in the documentation
2019-12-04 19:48:41 +00:00
Jason Jijón
7daf67172a
HHH-13758 - Limit Handler for SQL server doesn't work with CTE queries with strings literals
2019-12-04 19:38:56 +00:00
Sanne Grinovero
42752ec89d
HHH-8901 Missing data cleanup in the new test
2019-12-04 17:44:02 +00:00
Sanne Grinovero
386d77129e
HHH-13761 Debug logging of JPA compliance settings didn't log the value of the settings
2019-12-04 16:56:23 +00:00
Sanne Grinovero
b9b15245b7
HHH-8901 Some very minor string handling optimisations
2019-12-04 16:37:34 +00:00
Nathan Xu
ab9ae43185
HHH-8901 replace "in ()" SQL with "in (null)" in QueryParameterBindingsImpl
2019-12-04 16:05:10 +00:00
Davide D'Alto
4e449dfafa
HHH-13764 Test behaviour doesn't change when @Embedded is on the getter
2019-12-03 20:40:53 +00:00
Davide D'Alto
4fb813f39c
HHH-13764 Include getter annotations when required for the enhancements
2019-12-03 20:09:09 +00:00
Davide D'Alto
98101bfc52
HHH-13759 Add AssertJ for testing Hibernate Core
2019-12-03 12:13:56 +00:00
Davide D'Alto
46170d9ffe
HHH-13759 Add AssertJ in the list of libraries available
...
It's useful to test the bytecode enhancements and has a nicer
fluent API.
2019-12-03 11:48:33 +00:00
Simeon
6acfd17548
HHH-13762 Update vibur-dbcp dependency to 25.0
2019-12-02 12:07:49 +00:00
Vlad Mihalcea
f08abf3628
HHH-13608 Oracle8iDialect should use CASE_INSENSITIVE pattern matching when checking the statement type
2019-11-25 15:41:33 +00:00
Jan-Willem Gmelig Meyling
21e79125e6
HHH-9301 - Support select variable refs in group by for DBMS dialects that support it
...
While not strictly compliant with the SQL specification, the MySQL, PostgreSQL and H2 support the use of select aliases in the GROUP BY clause. An obvious benefit is that produced SQL queries will be easier to read, because complex select expressions from aggregrate queries will have to be included in the group by clause as well. These can now simply reference the aliases of the respective columns for the tuple element. However, there is also a functional difference. For function invocations that have parameterized arguments, the query optimizer can't guarantee the that the function result between the selection projection and grouping process are equal. This results in an error because a value is projected which is not grouped by. An example where this for example becomes relevant, is when parameterizing TimeScaleDB's [`time_bucket_gapfill()`](https://docs.timescale.com/latest/api#time_bucket_gapfill-examples ) function.
For example, using `time_bucket_gapfill()` one might want to produce a criteria query that produces the following SQL:
```sql
SELECT
time_bucket_gapfill(?, time, ?, ?) AS ts,
avg(tg) as tg
FROM iaqmeasurement
GROUP BY ts
ORDER BY ts;
```
When the alias is not used as grouping value, the query will yield an error:
```sql
SELECT
time_bucket_gapfill(?, time, ?, ?) AS ts,
avg(tg) as tg
FROM iaqmeasurement
GROUP BY time_bucket_gapfill(?, time, ?, ?)
ORDER BY ts;
```
Of course the parameter values can just be stored in a CTE as well, but I think we should consider support for variable refs in group by for DBMS dialects that support it. This pull request implements the feature equivalently to how its currently done for order by clauses, and only enables the feature for known supported dialects (H2, PostgreSQL and MySQL - based on [https://stackoverflow.com/a/3841804/2104280 ](https://stackoverflow.com/a/3841804/2104280 )).
Jira: https://hibernate.atlassian.net/browse/HHH-9301
Co-authored-by: Sayra Ranjha <S.S.Ranjha@student.tudelft.nl>
2019-11-25 14:57:17 +00:00
Jan-Willem Gmelig Meyling
bde7ca974b
HHH-12895 - Extra LEFT JOIN generated with @ManyToOne and @JoinTable when projecting
...
on main entity id
2019-11-25 14:27:57 +00:00
Jan-Willem Gmelig Meyling
473566c50d
HHH-13742 - Added additional tests
2019-11-25 12:15:21 +00:00
Jan-Willem Gmelig Meyling
325239353e
HHH-13742 - Preliminary fix for HHH-13742
2019-11-21 16:28:49 +01:00
Jan-Willem Gmelig Meyling
8089d8c575
HHH-13742 - Missing from clause with joined inheritance property in association subquery
2019-11-21 15:30:41 +01:00
Sanne Grinovero
c9a373c180
HHH-13739 Upgrade to Agroal 1.7
2019-11-18 15:21:23 +00:00
Andreas Knees
be23e167af
HHH-13722 Introducing a test case
2019-11-18 14:59:56 +00:00
Sanne Grinovero
7331a58d5e
HHH-13722 ArrayStoreException in Constraint.generateName
2019-11-18 14:55:37 +00:00
Gail Badner
76308e8a3e
HHH-13737 : Correct log message and fix checkstyle failure
2019-11-14 18:22:01 -08:00
Gail Badner
7d8549d8aa
HHH-13737 : Add debug logging
2019-11-14 18:22:01 -08:00
Gail Badner
c02011ef40
HHH-13737 : Add test case for HHH-13433
2019-11-14 18:22:01 -08:00
Andrea Boriero
7a74e4dd8f
5.4.9
2019-11-14 17:18:14 +00:00
Andrea Boriero
5fb866403e
5.4.9
2019-11-14 15:42:14 +00:00
Chris Cranford
0e329bef5a
HHH-12030 - Fix ClassCastException when Embeddable collection uses generic types
2019-11-14 13:56:56 +00:00
Andrea Boriero
841368175f
HHH-13614 Allow the IntegratorProvider to be supplied via its FQN in the JPA persistence.xml
2019-11-14 13:35:09 +00:00
Vlad Mihalcea
52f9a36a6d
HHH-13614 Allow the IntegratorProvider to be supplied via its FQN in the JPA persistence.xml
2019-11-14 13:35:09 +00:00
Andrea Boriero
f5fb84cfe2
HHH-13705 Enhancement as Proxy with inline dirty checking - flush of an @ManyToOne with an Embedded value having not null properties causes PropertyValueException
2019-11-14 11:31:11 +00:00
Andrea Boriero
842a155615
HHH-13705 Add test for issue
...
HHH-13705 Add test for issue
2019-11-14 11:31:11 +00:00
Christian Beikov
47c8a89390
HHH-13712 - Test and fix for missing superclass table joins when joining superclass associations
2019-11-14 11:29:01 +00:00
Sanne Grinovero
f7c8ba8532
HHH-13733 Upgrade to Jandex 2.1.1.Final
2019-11-14 10:25:25 +00:00
Sanne Grinovero
fcb8fdde3e
HHH-13731 Upgrade to Classmate 1.5.1
2019-11-14 10:10:48 +00:00
Sanne Grinovero
19692c1301
HHH-13730 Upgrade to Classmate 1.4.0
2019-11-14 09:13:20 +00:00
Andrea Boriero
9ddab37748
HHH-13727 H2 database with DATABASE_TO_UPPER=false throws org.h2.jdbc.JdbcSQLSyntaxErrorException: Table sequences not found
2019-11-13 13:57:48 +00:00