Files
scylladb/cql3/statements/authentication_statement.cc
Eliran Sinvani bf50dbd35b cql3 statements: Change dependency test API to express better it's
purpose

Cql statements used to have two API functions, depends_on_keyspace and
depends_on_column_family. The former, took as a parameter only a table
name, which makes no sense. There could be multiple tables with the same
name each in a different keyspace and it doesn't make sense to
generalize the test - i.e to ask "Does a statement depend on any table
named XXX?"
In this change we unify the two calls to one - depends on that takes a
keyspace name and optionally also a table name, that way every logical
dependency tests that makes sense is supported by a single API call.
2022-02-27 11:48:03 +02:00

33 lines
812 B
C++

/*
*/
/*
* Copyright 2016-present ScyllaDB
*
* Modified by ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#include "authentication_statement.hh"
#include "transport/messages/result_message.hh"
uint32_t cql3::statements::authentication_statement::get_bound_terms() const {
return 0;
}
bool cql3::statements::authentication_statement::depends_on(std::string_view ks_name, std::optional<std::string_view> cf_name) const {
return false;
}
void cql3::statements::authentication_statement::validate(
query_processor&,
const service::client_state& state) const {
}
future<> cql3::statements::authentication_statement::check_access(query_processor& qp, const service::client_state& state) const {
return make_ready_future<>();
}