From 84517fbf98faefbd8ce32d66923ba6752a402a6f Mon Sep 17 00:00:00 2001 From: Robert Bindar Date: Thu, 12 Feb 2026 13:22:24 +0200 Subject: [PATCH] add get_system_distributed_keyspace to cql_test_env Signed-off-by: Robert Bindar --- test/lib/cql_test_env.cc | 4 ++++ test/lib/cql_test_env.hh | 2 ++ 2 files changed, 6 insertions(+) diff --git a/test/lib/cql_test_env.cc b/test/lib/cql_test_env.cc index c8f93be45f..d82f9b1172 100644 --- a/test/lib/cql_test_env.cc +++ b/test/lib/cql_test_env.cc @@ -402,6 +402,10 @@ public: return _sys_ks; } + virtual sharded& get_system_distributed_keyspace() override { + return _sys_dist_ks; + } + virtual sharded& get_tablet_allocator() override { return _tablet_allocator; } diff --git a/test/lib/cql_test_env.hh b/test/lib/cql_test_env.hh index a31355f9fe..cf6791b63a 100644 --- a/test/lib/cql_test_env.hh +++ b/test/lib/cql_test_env.hh @@ -189,6 +189,8 @@ public: virtual sharded& get_system_keyspace() = 0; + virtual sharded& get_system_distributed_keyspace() = 0; + virtual sharded& get_tablet_allocator() = 0; virtual sharded& get_storage_proxy() = 0;