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 <glommer@cloudius-systems.com>
This commit is contained in:
Glauber Costa
2015-07-22 23:46:07 -04:00
parent 2c3463cf1f
commit f778e2aea2

View File

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