richardstartin commented on a change in pull request #7595:
URL: https://github.com/apache/pinot/pull/7595#discussion_r732881547



##########
File path: 
pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/creator/ColumnStatistics.java
##########
@@ -82,6 +82,13 @@ default boolean isFixedLength() {
    */
   int getMaxNumberOfMultiValues();
 
+  /**
+   * @return the length of the largest row in bytes for variable length types
+   */
+  default int getMaxRowLengthInBytes() {
+    return -1;
+  }

Review comment:
       @kishoreg I've only implemented this for MV bytes and strings, I don't 
think it's necessary otherwise?




-- 
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: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to