tkalkirill commented on code in PR #6442: URL: https://github.com/apache/ignite-3/pull/6442#discussion_r2282424198
########## modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/PageHeader.java: ########## @@ -33,12 +33,13 @@ /** * Page header. */ +// TODO: IGNITE-16350 Improve documentation and refactoring public class PageHeader { /** Page marker. */ public static final long PAGE_MARKER = 0x0000000000000001L; /** Dirty flag. */ - private static final long DIRTY_FLAG = 0x0100000000000000L; + private static final int DIRTY_FLAG = 0x01000000; /** Page relative pointer. Does not change once a page is allocated. */ private static final int RELATIVE_PTR_OFFSET = 8; Review Comment: Got rid of it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org