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 ?
Using hibernate and JPAStreamer When i do
Streamer.stream(Ett class).count()
It's returning 1 whileSelect 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 ?