add get_system_distributed_keyspace to cql_test_env

Signed-off-by: Robert Bindar <robert.bindar@scylladb.com>
This commit is contained in:
Robert Bindar
2026-02-12 13:22:24 +02:00
committed by Pavel Emelyanov
parent a0524ce79b
commit 84517fbf98
2 changed files with 6 additions and 0 deletions

View File

@@ -402,6 +402,10 @@ public:
return _sys_ks;
}
virtual sharded<db::system_distributed_keyspace>& get_system_distributed_keyspace() override {
return _sys_dist_ks;
}
virtual sharded<service::tablet_allocator>& get_tablet_allocator() override {
return _tablet_allocator;
}

View File

@@ -189,6 +189,8 @@ public:
virtual sharded<db::system_keyspace>& get_system_keyspace() = 0;
virtual sharded<db::system_distributed_keyspace>& get_system_distributed_keyspace() = 0;
virtual sharded<service::tablet_allocator>& get_tablet_allocator() = 0;
virtual sharded<service::storage_proxy>& get_storage_proxy() = 0;