Files
scylladb/cql3/statements/drop_view_statement.hh
Avi Kivity f3eade2f62 treewide: relicense to ScyllaDB-Source-Available-1.0
Drop the AGPL license in favor of a source-available license.
See the blog post [1] for details.

[1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
2024-12-18 17:45:13 +02:00

42 lines
1.1 KiB
C++

/*
* Copyright 2016-present ScyllaDB
*
* Modified by ScyllaDB
*/
/*
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
*/
#pragma once
#include <seastar/core/shared_ptr.hh>
#include "cql3/statements/schema_altering_statement.hh"
#include "data_dictionary/data_dictionary.hh"
namespace cql3 {
class query_processor;
class cf_name;
namespace statements {
/** A <code>DROP MATERIALIZED VIEW</code> parsed from a CQL query statement. */
class drop_view_statement : public schema_altering_statement {
private:
bool _if_exists;
public:
drop_view_statement(cf_name view_name, bool if_exists);
virtual future<> check_access(query_processor& qp, const service::client_state& state) const override;
future<std::tuple<::shared_ptr<cql_transport::event::schema_change>, std::vector<mutation>, cql3::cql_warnings_vec>> prepare_schema_mutations(query_processor& qp, const query_options& options, api::timestamp_type) const override;
virtual std::unique_ptr<prepared_statement> prepare(data_dictionary::database db, cql_stats& stats) override;
};
}
}