Vladsz83 commented on code in PR #10390:
URL: https://github.com/apache/ignite/pull/10390#discussion_r1043248559
##########
modules/core/src/main/java/org/apache/ignite/internal/cache/query/index/sorted/inline/types/NullableInlineIndexKeyType.java:
##########
@@ -167,9 +174,9 @@ protected NullableInlineIndexKeyType(IndexKeyType type,
short keySize) {
* @param pageAddr Page address.
* @param off Offset.
*
- * @return Inline value or {@code null} if value can't be restored.
+ * @return Inline value.
*/
- protected abstract @Nullable T get0(long pageAddr, int off);
+ protected abstract T get0(long pageAddr, int off);
Review Comment:
There is still a code, checking the null:
`IndexQueryCriteriaClosure#rowIsOutOfRange()`. Should it be fixed? There is no
null returns any more?
--
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]