Skip to content

Commit

Permalink
*: fix tableScan incorrect trace. (#4699)
Browse files Browse the repository at this point in the history
close #4692
  • Loading branch information
ywqzzy authored Apr 19, 2022
1 parent afdd2e0 commit 873d3ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Flash/Statistics/TableScanImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void TableScanStatistics::collectExtraRuntimeDetail()
{
auto * p_stream = dynamic_cast<IProfilingBlockInputStream *>(io_stream.get());
assert(p_stream);
cop_table_scan_detail.bytes += p_stream->getProfileInfo().bytes;
local_table_scan_detail.bytes += p_stream->getProfileInfo().bytes;
}
}
}
Expand Down

0 comments on commit 873d3ff

Please sign in to comment.