ibessonov commented on code in PR #6316: URL: https://github.com/apache/ignite-3/pull/6316#discussion_r2239605524
########## modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/index/sorted/comparator/JitComparator.java: ########## @@ -20,8 +20,13 @@ import org.apache.ignite.internal.schema.UnsafeByteBufferAccessor; /** - * Interface for comparing two binary tuples, represented as {@link UnsafeByteBufferAccessor}s. All implementation of this interface are + * Interface for comparing two binary tuples, represented as {@link UnsafeByteBufferAccessor}s. All implementations of this interface are * expected to be generated in runtime by {@link JitComparatorGenerator}. + * + * <p>Throughout the codebase I refer to its parameters as {@code outer} and {@code inner}. The meaning behind these terms is the following: + * outer entry might come outside of an index tree, and this it can be a prefix. But inner entry always comes from the index itself. It + * cannot be a prefix, but can in principle be a suffix of a full tuple. The Review Comment: I mixed some words, I apologize :( I fixed the comment -- 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