This is an automated email from the ASF dual-hosted git repository. taiyangli pushed a commit to branch hotfix_6819 in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
commit 833bec99c6b2ab5841278a67db18f7eda343c0f9 Author: 李扬 <[email protected]> AuthorDate: Fri Aug 16 07:53:01 2024 +0000 fix var shadow --- cpp-ch/local-engine/Storages/SourceFromJavaIter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp-ch/local-engine/Storages/SourceFromJavaIter.cpp b/cpp-ch/local-engine/Storages/SourceFromJavaIter.cpp index 2191112cf..f123b7c74 100644 --- a/cpp-ch/local-engine/Storages/SourceFromJavaIter.cpp +++ b/cpp-ch/local-engine/Storages/SourceFromJavaIter.cpp @@ -142,7 +142,7 @@ DB::Chunk SourceFromJavaIter::generate() } else { - DB::Chunk result = BlockUtil::buildRowCountChunk(input_block->rows()); + result = BlockUtil::buildRowCountChunk(input_block->rows()); auto info = std::make_shared<DB::AggregatedChunkInfo>(); result.getChunkInfos().add(std::move(info)); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
