freemandealer commented on code in PR #54295:
URL: https://github.com/apache/doris/pull/54295#discussion_r2269312207


##########
be/src/io/cache/block_file_cache.cpp:
##########
@@ -2359,4 +2360,84 @@ template void BlockFileCache::remove(FileBlockSPtr 
file_block,
 
 #include "common/compile_check_end.h"
 
+
+Status 
BlockFileCache::report_file_cache_inconsistency(std::vector<std::string>& 
results) {
+    InconsistencyContext inconsistency_context;
+    RETURN_IF_ERROR(check_file_cache_consistency(inconsistency_context));
+    auto n = inconsistency_context.types.size();
+    results.reserve(n);
+    for (size_t i = 0; i < n; i++) {
+        std::string result;
+        result += "File cahce info in manager:\n";

Review Comment:
   cahce -> cache



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

Reply via email to