mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-02 14:15:46 +00:00
in `simple_backlog_controller_test`, we need to have multiple tables at the same time. but the default constructor of `simple_schema` always creates schema with the table name of "ks.cf". we are going to have a per-table metrics. and the new metric group will use the table name as its counter labels, so we need to either disable this per-table metrics or use a different table name for each table. as in real world, we don't have multiple tables at the same time. it would be better to stop reusing the same table name in a single test session. so, in this change, we use a random cf_name for each of the created table. Fixes #14767 Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>