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
Queries and extents may fail or return wrong results when used outside of a transaction with the non-transactional-read feature. The reason is that they may rely on iterators, which may be modified by concurrently by other transactions.
Solutions:
Disallow Extents outside of transactions. JDO spec 3.1, section 5.6 only requires Queries and navigation to work with non-TX-read
For queries, use infinite batch size, i.e. load all results, at least as HOLLOW. We should consider putting a warning out if the result is too big.
The text was updated successfully, but these errors were encountered:
Queries and extents may fail or return wrong results when used outside of a transaction with the non-transactional-read feature. The reason is that they may rely on iterators, which may be modified by concurrently by other transactions.
Solutions:
The text was updated successfully, but these errors were encountered: