This is an automated email from the ASF dual-hosted git repository.

suxiaogang223 pushed a commit to branch 
codex/complex-column-predicate-stats-filtering
in repository https://gitbox.apache.org/repos/asf/doris.git

commit ba3b94d83c1e44782ba9307c1f2a1c487c542442
Author: Socrates <[email protected]>
AuthorDate: Thu Jun 4 01:45:52 2026 +0800

    [fix](be) Fix parquet column reader test compile
    
    ### What problem does this PR solve?
    
    Issue Number: close #xxx
    
    Related PR: #xxx
    
    Problem Summary: Fix a missing local Status declaration in 
ParquetColumnReaderTest so the BE unit test target can compile.
    
    ### Release note
    
    None
    
    ### Check List (For Author)
    
    - Test: Manual test
        - Ran build-support/clang-format.sh for the modified test file.
        - Ran git diff --check.
        - Fedora BE UT will be rerun after push.
    - Behavior changed: No
    - Does this need documentation: No
---
 be/test/format/new_parquet/parquet_column_reader_test.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/test/format/new_parquet/parquet_column_reader_test.cpp 
b/be/test/format/new_parquet/parquet_column_reader_test.cpp
index 21f09df58ac..5c1119318b9 100644
--- a/be/test/format/new_parquet/parquet_column_reader_test.cpp
+++ b/be/test/format/new_parquet/parquet_column_reader_test.cpp
@@ -1389,7 +1389,7 @@ TEST_F(ParquetColumnReaderTest, SkipThenRead) {
 
     MutableColumnPtr column = reader->type()->create_column();
     int64_t rows_read = 0;
-    st = reader->read(2, column, &rows_read);
+    auto st = reader->read(2, column, &rows_read);
     ASSERT_TRUE(st.ok()) << st;
     ASSERT_EQ(rows_read, 2);
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to