This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 4245ffceca9 [Fix](tablet id) use int64_t instead of int32_t or
uint32_t for tablet_id (#34962)
4245ffceca9 is described below
commit 4245ffceca92f5bacee196416cc8a821c7e1ea25
Author: lihangyu <[email protected]>
AuthorDate: Thu May 16 19:56:11 2024 +0800
[Fix](tablet id) use int64_t instead of int32_t or uint32_t for tablet_id
(#34962)
---
be/src/olap/rowset/segment_v2/column_reader.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/olap/rowset/segment_v2/column_reader.h
b/be/src/olap/rowset/segment_v2/column_reader.h
index 0d71c4107e1..ae2b29cf983 100644
--- a/be/src/olap/rowset/segment_v2/column_reader.h
+++ b/be/src/olap/rowset/segment_v2/column_reader.h
@@ -558,7 +558,7 @@ private:
class RowIdColumnIterator : public ColumnIterator {
public:
RowIdColumnIterator() = delete;
- RowIdColumnIterator(int32_t tid, RowsetId rid, int32_t segid)
+ RowIdColumnIterator(int64_t tid, RowsetId rid, int32_t segid)
: _tablet_id(tid), _rowset_id(rid), _segment_id(segid) {}
Status seek_to_first() override {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]