Skip to content

Commit

Permalink
logging: Fix local_region_num in MPPTaskStatistics logging (#8894)
Browse files Browse the repository at this point in the history
close #8895
  • Loading branch information
JaySon-Huang authored Apr 3, 2024
1 parent 7bfb681 commit b32dea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Storages/DeltaMerge/ScanContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ String ScanContext::toJson() const
json->set("dmfile_read_time", fmt::format("{:.3f}ms", total_dmfile_read_time_ns.load() / NS_TO_MS_SCALE));

json->set("remote_region_num", total_remote_region_num.load());
json->set("local_region_num", total_remote_region_num.load());
json->set("local_region_num", total_local_region_num.load());

json->set("read_bytes", user_read_bytes.load());

Expand Down

0 comments on commit b32dea6

Please sign in to comment.