mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-07 07:23:15 +00:00
Current algorithm was marking tables with regular columns not named "value" as not dense, which doesn't have to be the case. It can be either way. It should be enough to look at clustering components. If there is a clustering key, then table is dense if and only if all comparator components belong to the clustering key. If there is no clustering key, then if there are any regular columns we're sure it's not dense. Fixes #2587. Message-Id: <1499877777-7083-1-git-send-email-tgrabiec@scylladb.com>