This is an automated email from the ASF dual-hosted git repository.
colinlee pushed a commit to branch fix_data_loss
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/fix_data_loss by this push:
new e4e4e7e2 fix format.
e4e4e7e2 is described below
commit e4e4e7e27be5ec3c10f4ab0677ebda26221b569c
Author: ColinLee <[email protected]>
AuthorDate: Thu Apr 9 17:13:55 2026 +0800
fix format.
---
cpp/test/reader/table_view/tsfile_reader_table_test.cc | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/cpp/test/reader/table_view/tsfile_reader_table_test.cc
b/cpp/test/reader/table_view/tsfile_reader_table_test.cc
index b29b6bd4..1f63573e 100644
--- a/cpp/test/reader/table_view/tsfile_reader_table_test.cc
+++ b/cpp/test/reader/table_view/tsfile_reader_table_test.cc
@@ -868,7 +868,9 @@ TEST_F(TsFileTableReaderTest,
AlignedNullAtBlockBoundaryNoRowLoss) {
auto* trs = dynamic_cast<storage::TableResultSet*>(rs);
bool hn = false;
int64_t cnt = 0;
- while (trs->next(hn) == common::E_OK && hn) { cnt++; }
+ while (trs->next(hn) == common::E_OK && hn) {
+ cnt++;
+ }
reader.destroy_query_data_set(rs);
return cnt;
};