morningman commented on code in PR #13985:
URL: https://github.com/apache/doris/pull/13985#discussion_r1014761711
##########
be/src/vec/exec/scan/new_olap_scan_node.cpp:
##########
@@ -132,6 +132,17 @@ static std::string olap_filters_to_string(const
std::vector<doris::TCondition>&
return filters_string;
}
+static std::string tablets_id_to_string(
+ const std::vector<std::unique_ptr<TPaloScanRange>>& scan_ranges) {
+ std::stringstream ss;
+ ss << "[" << scan_ranges[0]->tablet_id;
+ for (int i = 1; i < scan_ranges.size(); ++i) {
+ ss << ", " << scan_ranges[i]->tablet_id;
+ }
+ ss << "]";
Review Comment:
the tablet id maybe too many?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]