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

dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 173db9dbab7 [Fix](tablet id) use int64_t instead of int32_t or 
uint32_t for tablet_id (#34962)
173db9dbab7 is described below

commit 173db9dbab7dc61d19d807c029a7b21824352bf2
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]

Reply via email to