github-actions[bot] commented on code in PR #16472: URL: https://github.com/apache/doris/pull/16472#discussion_r1100069691
########## be/src/vec/olap/vertical_block_reader.h: ########## @@ -42,7 +42,11 @@ class VerticalBlockReader final : public TabletReader { Status init(const ReaderParams& read_params) override; Status next_block_with_aggregation(Block* block, bool* eof) override { - return (this->*_next_block_func)(block, eof); + auto res = (this->*_next_block_func)(block, eof); + if (UNLIKELY(res == OLAP_ERR_IO_ERROR)) { Review Comment: warning: use of undeclared identifier 'OLAP_ERR_IO_ERROR' [clang-diagnostic-error] ```cpp if (UNLIKELY(res == OLAP_ERR_IO_ERROR)) { ^ ``` -- 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...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org