gortiz commented on code in PR #11205: URL: https://github.com/apache/pinot/pull/11205#discussion_r1277738789
########## pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/blocks/TransferableBlock.java: ########## @@ -167,8 +167,13 @@ public boolean isSuccessfulEndOfStreamBlock() { /** * @return whether this block represents a NOOP block */ + @Deprecated(forRemoval = true) public boolean isNoOpBlock() { - return isType(MetadataBlock.MetadataBlockType.NOOP); + return false; Review Comment: This code won't compile in Java 8 (`Deprecated.forRemoval` was added in Java 8), but we should remove this method before merging this. The reason to keep it is because there are a couple of test that still use it. -- 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