HappenLee commented on code in PR #49944: URL: https://github.com/apache/doris/pull/49944#discussion_r2041103824
########## be/src/olap/id_manager.h: ########## @@ -83,6 +105,17 @@ struct FileMapping { return std::make_tuple(tablet_id, rowset_id, segment_id); } + + std::tuple<int, ExternalFileMappingInfo&> get_external_file_info() { + DCHECK(type == FileMappingType::EXTERNAL); + DCHECK(external_info.has_value()); + + int plan_node_id; Review Comment: the value seem only use in debug. try to remove? -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org