The object is needed to get timestamp from attributes (in a case when the statement was prepared with parameter marker).
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/*
|
|
* Copyright 2016-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (AGPL-3.0-or-later 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;
|
|
};
|
|
|
|
}
|
|
}
|