mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-01 20:46:56 +00:00
create_keyspace: fix warning for tablets
Remove LWT from the list of unsupported features.
This commit is contained in:
@@ -113,8 +113,8 @@ future<std::tuple<::shared_ptr<cql_transport::event::schema_change>, utils::chun
|
||||
if (rs->uses_tablets()) {
|
||||
warnings.push_back(
|
||||
"Tables in this keyspace will be replicated using Tablets "
|
||||
"and will not support Materialized Views, Secondary Indexes, CDC, LWT and counters features. "
|
||||
"To use Materialized Views, Secondary Indexes, CDC, LWT or counters, drop this keyspace and re-create it "
|
||||
"and will not support Materialized Views, Secondary Indexes, CDC and counters features. "
|
||||
"To use Materialized Views, Secondary Indexes, CDC or counters, drop this keyspace and re-create it "
|
||||
"without tablets by adding AND TABLETS = {'enabled': false} to the CREATE KEYSPACE statement.");
|
||||
if (ksm->initial_tablets().value()) {
|
||||
warnings.push_back("Keyspace `initial` tablets option is deprecated. Use per-table tablet options instead.");
|
||||
|
||||
Reference in New Issue
Block a user