-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Native query EntityManager.createNativeQuery(…, EntityType.class)
returns different result when run via EntityManager.createNativeQuery(…)
#3805
Comments
If you would like us to spend some time helping you to diagnose the problem, please spend some time describing it and, ideally, providing a minimal yet complete sample that reproduces the problem. |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
Sorry for the delay. I've attached a demo project that shows this issue in the provided test. This should be readily importable into IntelliJ. Should you run into issues with other IDEs, please let me know. The issue can be seen by running the Note: this demo project uses Spring Boot Should it be necessary, the same query can be run in the shell using the following steps (note: assumes that no other containers using the
afterwards, run the following query in the SELECT
client_id,
date_trunc('DAY', hour AT TIME ZONE 'UTC' - (INTERVAL '1 hour') * 4) AS hour,
SUM(decimal_column) AS decimal_column,
SUM(counter) AS counter
FROM
test_service.hourly_test
WHERE
client_id = 'b5aeae94-5e69-4775-a8ea-b5265619cda7'
AND hour >= '2024-03-19T03:00:00Z'
AND hour < '2024-03-20T02:59:59.999Z'
GROUP BY
client_id,
2
ORDER BY
2 ASC; For me, this results in the following output:
which is also what I expected. |
Postgres query logs: The first query is from the repository, the second one via
Interstingly, the mismatch only happens when data is being inserted/updated in the same transaction. Running the query on existing data doesn't cause the problem to pop up. |
Alright, so the difference comes from cached entities. Spring Data JPA calls You can verify this by capturing the result of This is rather surprising to me, however, you might want to get in touch with the Hibernate team to see whether there's a good explanation for this behavior. That being said, there's nothing we can do here. |
EntityManager.createNativeQuery(…, EntityType.class)
returns different result when run via EntityManager.createNativeQuery(…)
Thank you for the quick and insightful analysis. I'll raise an issue in Hibernate. |
I have the following PostgreSQL table DDL:
And the following data (note: uuid is random):
When I run the following native query repository method:
I expect to get the value:
MyValue(clientId=b5aeae94-5e69-4775-a8ea-b5265619cda7, hour=2024-03-19T00:00:00Z, grossRevenue=2, numberOfInvoices=2)
.The actual value I get is:
MyValue(clientId=b5aeae94-5e69-4775-a8ea-b5265619cda7, hour=2024-03-19T00:00:00Z, grossRevenue=1, numberOfInvoices=1)
.If I run the same query using
entityManager.createNativeQuery()
(note: SPeL part switched for a string ascreateNativeQuery
does not seem to support it):Then I get the expected result. If I run the same query in the console (using e.g.
psql
), I also get the expected result.Using
spring.jpa.show-sql=true
andspring.jpa.properties.hibernate.format_sql=true
, I see the following SQL call logged:which is exactly the query I was expecting.
Here are my entity definitions:
Id class:
And this is how the failing test which contains this issue creates the database entries:
(note to avoid confusion: the datetime variables represent times in a
+01:00
time zone, but areInstant
s that match the above UTC times in theINSERT
statements)Seeing how:
entityManager.createNativeQuery()
returns the correct resultsthis seems to be Spring Data JPA issue.
I have almost exactly the same query (using different tables with very similar structure) in different repositories which works, which is why I'm a bit baffled at this behaviour. Another query that looks practically identical, is as follows:
with the following entity:
and Id class:
Unfortunately, I'm not sure how to debug this as JPA/Hibernate stacks are very deep and difficult (IMO) to debug unless you have a lot of experience with it.
I unfortunately cannot provide a reproducible sample at this time, but if that's the only way to move forward, I can spend some time next week preparing an MRP. In the meantime, if there's anything I could potentially try, I would appreciate it.
The text was updated successfully, but these errors were encountered: