Tech-Circle-48 commented on code in PR #48866:
URL: https://github.com/apache/doris/pull/48866#discussion_r2019711150


##########
be/src/olap/delta_writer.cpp:
##########
@@ -231,7 +231,24 @@ int64_t BaseDeltaWriter::mem_consumption(MemType mem) {
     return _memtable_writer->mem_consumption(mem);
 }
 
-void DeltaWriter::_request_slave_tablet_pull_rowset(const PNodeInfo& 
node_info) {
+Status DeltaWriter::_safe_get_file_size(const std::string& file_path, int64_t* 
file_size) {
+    CHECK(file_size != nullptr) << "Null output parameter in 
safe_get_file_size";
+
+    try {
+        if (!std::filesystem::exists(file_path)) {

Review Comment:
   the issue has been fixed



-- 
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

Reply via email to