/* * Copyright (C) 2015-present ScyllaDB * * Modified by ScyllaDB */ /* * SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0) */ #pragma once #include "cql3/statements/schema_altering_statement.hh" namespace cql3 { class query_processor; namespace statements { class drop_keyspace_statement : public schema_altering_statement { sstring _keyspace; bool _if_exists; public: drop_keyspace_statement(const sstring& keyspace, bool if_exists); virtual future<> check_access(query_processor& qp, const service::client_state& state) const override; virtual void validate(query_processor&, const service::client_state& state) const override; virtual const sstring& keyspace() const override; future, cql3::cql_warnings_vec>> prepare_schema_mutations(query_processor& qp, service::query_state& state, const query_options& options, service::group0_batch& mc) const override; virtual std::unique_ptr prepare(data_dictionary::database db, cql_stats& stats) override; }; } }