From f778e2aea2cc8bf3022c73a198bf79c7aea4428e Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Wed, 22 Jul 2015 23:46:07 -0400 Subject: [PATCH] system keyspace: set compaction strategy options for system.hints This is the last system table that needed parameters. All them are now devoid of fixmes Signed-off-by: Glauber Costa --- db/system_keyspace.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/db/system_keyspace.cc b/db/system_keyspace.cc index 30c84d12ba..ae7a8c756c 100644 --- a/db/system_keyspace.cc +++ b/db/system_keyspace.cc @@ -77,11 +77,9 @@ schema_ptr hints() { utf8_type, // comment "hints awaiting delivery" - // FIXME: the original Java code also had: - // operations on resulting CFMetaData: - // .compactionStrategyOptions(Collections.singletonMap("enabled", "false")) ))); builder.set_gc_grace_seconds(0); + builder.set_compaction_strategy_options({{ "enabled", "false" }}); return builder.build(schema_builder::compact_storage::yes); }(); return hints;