Skip to content

Commit

Permalink
[fix](load) fix tablet id in RowsetWriterContext
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijchen committed Jun 29, 2023
1 parent 59198ed commit 16c9443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/delta_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Status DeltaWriter::init() {
context.segments_overlap = OVERLAPPING;
context.tablet_schema = _tablet_schema;
context.newest_write_timestamp = UnixSeconds();
context.tablet_id = _tablet->table_id();
context.tablet_id = _tablet->tablet_id();
context.tablet = _tablet;
context.write_type = DataWriteType::TYPE_DIRECT;
context.mow_context = std::make_shared<MowContext>(_cur_max_version, _req.txn_id, _rowset_ids,
Expand Down

0 comments on commit 16c9443

Please sign in to comment.