
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
07/Aug/07 11:47 PM
|
|
If you want rows 10-19 of some query, the sequence
q.setFirstResult(10).setMaxResults(10);
behaves as expected. On the other hand
q.setMaxResults(10).setFirstResult(10);
returns the empty list. QueryImpl.setFirstResult should reset the range endpoint. maxResults is a count, not an index.
|
|
Description
|
If you want rows 10-19 of some query, the sequence
q.setFirstResult(10).setMaxResults(10);
behaves as expected. On the other hand
q.setMaxResults(10).setFirstResult(10);
returns the empty list. QueryImpl.setFirstResult should reset the range endpoint. maxResults is a count, not an index. |
Show » |
| No work has yet been logged on this issue.
|
|