From c970d682d1ccb39ef3681679f95dc7c6dfc2ae67 Mon Sep 17 00:00:00 2001 From: Duarte Nunes Date: Tue, 31 May 2016 11:44:17 +0200 Subject: [PATCH] storage_service: Announce range tombstones feature This patch enables the RANGE_TOMBSTONES supported feature, meaning that the node is capable of accepting row entry tombstones as range tombstones. Signed-off-by: Duarte Nunes --- service/storage_service.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/storage_service.cc b/service/storage_service.cc index 011b92cf25..97858147cd 100644 --- a/service/storage_service.cc +++ b/service/storage_service.cc @@ -97,7 +97,7 @@ sstring storage_service::get_config_supported_features() { // Add features supported by this local node. When a new feature is // introduced in scylla, update it here, e.g., // return sstring("FEATURE1,FEATURE2") - return sstring(""); + return RANGE_TOMBSTONES_FEATURE; } std::set get_seeds() {