From b89b70daa8da146285c457e7cfd4af5702ccb89e Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 1 Oct 2015 13:22:18 +0300 Subject: [PATCH] db/schema_tables: Wire up drop column notifications Signed-off-by: Pekka Enberg --- db/schema_tables.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/db/schema_tables.cc b/db/schema_tables.cc index e52e80aba7..d85de94d85 100644 --- a/db/schema_tables.cc +++ b/db/schema_tables.cc @@ -726,6 +726,9 @@ future<> save_system_keyspace_schema() { for (auto&& cfm : created) { service::migration_manager::notify_create_column_family(cfm).get0(); } + for (auto&& cfm : dropped) { + service::migration_manager::notify_drop_column_family(cfm).get0(); + } } }); });