mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 11:00:35 +00:00
We treat Seastar as a "system" library, and those are included with angle brackets. Closes scylladb/scylladb#21959
28 lines
589 B
C++
28 lines
589 B
C++
/*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2024-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "mutation/mutation.hh"
|
|
#include <seastar/core/future.hh>
|
|
#include "service/storage_proxy.hh"
|
|
#include "query-result-set.hh"
|
|
|
|
#include <seastar/core/distributed.hh>
|
|
|
|
namespace db {
|
|
|
|
namespace schema_tables {
|
|
|
|
future<> merge_schema(sharded<db::system_keyspace>& sys_ks, distributed<service::storage_proxy>& proxy, gms::feature_service& feat, std::vector<mutation> mutations, bool reload = false);
|
|
|
|
}
|
|
|
|
}
|