/* * Copyright (C) 2017-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" #include #include #include #include "schema/schema_fwd.hh" namespace cql3 { class query_processor; class index_name; namespace statements { class drop_index_statement : public schema_altering_statement { sstring _index_name; // A "drop index" statement does not specify the base table's name, just an // index name. Nevertheless, the virtual column_family() method is supposed // to return a reasonable table name. If the index doesn't exist, we return // an empty name (this commonly happens with "if exists"). mutable std::optional _cf_name; bool _if_exists; cql_stats* _cql_stats = nullptr; public: drop_index_statement(::shared_ptr index_name, bool if_exists); virtual const sstring& column_family() const override; 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; future, utils::chunked_vector, cql3::cql_warnings_vec>> prepare_schema_mutations(query_processor& qp, const query_options& options, api::timestamp_type) const override; virtual std::unique_ptr prepare(data_dictionary::database db, cql_stats& stats) override; private: schema_ptr lookup_indexed_table(query_processor& qp) const; schema_ptr make_drop_idex_schema(query_processor& qp) const; }; } }