mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-13 03:12:13 +00:00
Passing `0` as the `initial_tablets` argument causes `schema_loaders`'s placeholder keyspace to be a tablet keyspace. This causes `scylla sstable` to reject some table schemas which are legitimate in this context. For example, `scylla sstable` refuses to work with sstables which contains `counter` columns, because tablets don't support counters. This is undesirable. Let's make `schema_loader`'s keyspace a non-tablet keyspace. Closes scylladb/scylladb#26192