This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push: new 26353ba8b5 [clang build]fix clang compile error (#9615) 26353ba8b5 is described below commit 26353ba8b5b190fb731dc528fb3ccfeb11df002b Author: Pxl <pxl...@qq.com> AuthorDate: Wed May 18 07:42:31 2022 +0800 [clang build]fix clang compile error (#9615) --- be/src/exec/parquet_scanner.h | 12 ++++++++---- be/src/vec/exec/vparquet_scanner.h | 6 +++--- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/be/src/exec/parquet_scanner.h b/be/src/exec/parquet_scanner.h index a34e4a19e6..535d3fe6c5 100644 --- a/be/src/exec/parquet_scanner.h +++ b/be/src/exec/parquet_scanner.h @@ -54,16 +54,20 @@ public: const std::vector<TNetworkAddress>& broker_addresses, const std::vector<TExpr>& pre_filter_texprs, ScannerCounter* counter); - ~ParquetScanner(); + ~ParquetScanner() override; // Open this scanner, will initialize information need to - virtual Status open(); + Status open() override; // Get next tuple - virtual Status get_next(Tuple* tuple, MemPool* tuple_pool, bool* eof, bool* fill_tuple); + Status get_next(Tuple* tuple, MemPool* tuple_pool, bool* eof, bool* fill_tuple) override; + + Status get_next(vectorized::Block* block, bool* eof) override { + return Status::NotSupported("Not Implemented get block"); + } // Close this scanner - virtual void close(); + void close() override; protected: // Read next buffer from reader diff --git a/be/src/vec/exec/vparquet_scanner.h b/be/src/vec/exec/vparquet_scanner.h index 754aabc4c3..31749248d5 100644 --- a/be/src/vec/exec/vparquet_scanner.h +++ b/be/src/vec/exec/vparquet_scanner.h @@ -44,12 +44,12 @@ public: const std::vector<TNetworkAddress>& broker_addresses, const std::vector<TExpr>& pre_filter_texprs, ScannerCounter* counter); - virtual ~VParquetScanner(); + ~VParquetScanner() override; // Open this scanner, will initialize information need to - Status open(); + Status open() override; - Status get_next(Block* block, bool* eof); + Status get_next(Block* block, bool* eof) override; private: Status _next_arrow_batch(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org