Description
All in-memory caches share the same FreeList data structure which relies on pageId comparisons to manage its internal state.
As described in javadoc for FullPageId class each pageId contains a partitionID part which is not guaranteed to be constant and is going to be changed as part of a linked ticket.
Thus we need to exclude partitionID when using pageId for comparisons that expect pageId to be constant.
Notes
This change is not applicable for persistent caches as they maintain separate FreeList for each partition so partitionID part is constant for pages from that partition.
Attachments
Issue Links
- blocks
-
IGNITE-6624 SQL: IndexingQueryCacheFilter should use immediate partition data if possible
- Resolved