You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using hibernate and JPAStreamer
When i do Streamer.stream(Ett class).count()
It's returning 1 while Select count(*) from t_ett
Is returning the good number of line in the table.
JPAStreamer use a count(field) instead of count(*) when quering, that's the only difference i've seen.
Is there a cache somewhere ? Why JPAStreamer isn't returning the good value ?
The text was updated successfully, but these errors were encountered:
Using hibernate and JPAStreamer
When i do
Streamer.stream(Ett class).count()
It's returning 1 while
Select count(*) from t_ett
Is returning the good number of line in the table.
JPAStreamer use a count(field) instead of count(*) when quering, that's the only difference i've seen.
Is there a cache somewhere ? Why JPAStreamer isn't returning the good value ?
The text was updated successfully, but these errors were encountered: