github-actions[bot] commented on code in PR #15441: URL: https://github.com/apache/doris/pull/15441#discussion_r1058165186
########## be/src/vec/exec/format/parquet/vparquet_reader.cpp: ########## @@ -155,7 +155,7 @@ Status ParquetReader::_open_file() { _profile, system_properties, file_description, &_file_system, &_file_reader)); } if (_file_metadata == nullptr) { - SCOPED_RAW_TIMER(&_statistics.parse_meta_time); + RETURN_IF_ERROR(_file_reader->open()); Review Comment: warning: no member named 'open' in 'doris::io::FileReader' [clang-diagnostic-error] ```cpp RETURN_IF_ERROR(_file_reader->open()); ^ ``` **be/src/common/status.h:484:** expanded from macro 'RETURN_IF_ERROR' ```cpp Status _status_ = (stmt); \ ^ ``` -- 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