This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push: new 44a896fa112 [branch-1.2] fix code format after merge 44a896fa112 is described below commit 44a896fa11203b25c032afe4f7ae090e08416676 Author: morningman <morning...@163.com> AuthorDate: Sat Oct 7 16:09:02 2023 +0800 [branch-1.2] fix code format after merge --- be/src/vec/exec/format/parquet/parquet_thrift_util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/vec/exec/format/parquet/parquet_thrift_util.h b/be/src/vec/exec/format/parquet/parquet_thrift_util.h index 5642bbff040..fb55f16d45b 100644 --- a/be/src/vec/exec/format/parquet/parquet_thrift_util.h +++ b/be/src/vec/exec/format/parquet/parquet_thrift_util.h @@ -51,8 +51,8 @@ static Status parse_thrift_footer(FileReader* file, std::shared_ptr<FileMetaData uint32_t metadata_size = decode_fixed32_le(footer); if (metadata_size > file_size - PARQUET_FOOTER_SIZE) { return Status::Corruption("Parquet file size is ", file_size, - " bytes, smaller than the size reported by footer's (", metadata_size, - "bytes)"); + " bytes, smaller than the size reported by footer's (", + metadata_size, "bytes)"); } tparquet::FileMetaData t_metadata; // deserialize footer --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org