This is an automated email from the ASF dual-hosted git repository.

dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 71480ff12ab [fix](cloud) Return error if migrate to versioned 
keys/compact snapsh… (#57066)
71480ff12ab is described below

commit 71480ff12abb7661a54d774fb99b153d1aa40b46
Author: walter <[email protected]>
AuthorDate: Fri Oct 17 12:10:07 2025 +0800

    [fix](cloud) Return error if migrate to versioned keys/compact snapsh… 
(#57066)
    
    …ot chains is not implemented
---
 cloud/src/snapshot/snapshot_manager.cpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/cloud/src/snapshot/snapshot_manager.cpp 
b/cloud/src/snapshot/snapshot_manager.cpp
index d18e8dc3676..ed15654287f 100644
--- a/cloud/src/snapshot/snapshot_manager.cpp
+++ b/cloud/src/snapshot/snapshot_manager.cpp
@@ -151,11 +151,13 @@ int 
SnapshotManager::recycle_snapshot_meta_and_data(std::string_view instance_id
 }
 
 int SnapshotManager::migrate_to_versioned_keys(InstanceDataMigrator* migrator) 
{
-    return 0;
+    LOG(WARNING) << "Migrate to versioned keys is not implemented";
+    return -1;
 }
 
 int SnapshotManager::compact_snapshot_chains(InstanceChainCompactor* 
compactor) {
-    return 0;
+    LOG(WARNING) << "Compact snapshot chains is not implemented";
+    return -1;
 }
 
 } // namespace doris::cloud


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to