tledkov-gridgain commented on a change in pull request #9604:
URL: https://github.com/apache/ignite/pull/9604#discussion_r762982502



##########
File path: modules/core/src/main/java/org/apache/ignite/cache/QueryEntity.java
##########
@@ -669,6 +687,74 @@ public QueryEntity addQueryField(String fullName, String 
type, String alias) {
         return this;
     }
 
+    /**
+     * Returns INLINE_SIZE for PK index.
+     *
+     * @return INLINE_SIZE for PK index.
+     */
+    public int getPrimaryKeyInlineSize() {
+        return pkInlineSize != null ? pkInlineSize : -1;
+    }
+
+    /**
+     * Sets INLINE_SIZE for PK index. Implemented at the child.
+     *
+     * @param pkInlineSize INLINE_SIZE for PK index.
+     * @return {@code this} for chaining.
+     */
+    public QueryEntity setPrimaryKeyInlineSize(int pkInlineSize) {

Review comment:
       Great issue. Thanks!




-- 
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]


Reply via email to