tkalkirill commented on code in PR #815:
URL: https://github.com/apache/ignite-3/pull/815#discussion_r882761149
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/store/FilePageStore.java:
##########
@@ -766,4 +766,18 @@ private void checkHeader(ByteBuffer headerBuffer) throws
IOException {
+ ", filePageSize=" + pageSize + "]");
}
}
+
+ /**
+ * Returns data type, can be {@link PageStore#TYPE_IDX} or {@link
PageStore#TYPE_DATA}.
+ */
+ byte type() {
+ return type;
+ }
+
+ /**
+ * Returns file page store path.
+ */
+ Path filePath() {
Review Comment:
This is needed for current tests, then it will be reworked when there is a
new checkpoint algorithm.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]