Skip to content

Commit

Permalink
[Fix](tablet id) use int64_t instead of int32_t or uint32_t for table…
Browse files Browse the repository at this point in the history
…t_id (apache#34962)
  • Loading branch information
eldenmoon authored May 16, 2024
1 parent 88c9ed3 commit 173db9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/rowset/segment_v2/column_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ class ArrayFileColumnIterator final : public ColumnIterator {
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 {
Expand Down

0 comments on commit 173db9d

Please sign in to comment.