Files
scylla/cql3/index_name.hh
Kefu Chai 2dbf044b91 cql3: do not include unused headers
these unused includes were identified by clangd. see
https://clangd.llvm.org/guides/include-cleaner#unused-include-warning
for more details on the "Unused include" warning.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16791
2024-01-16 16:43:17 +02:00

32 lines
503 B
C++

/*
* Copyright (C) 2015-present ScyllaDB
*
* Modified by ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#pragma once
#include "cql3/keyspace_element_name.hh"
namespace cql3 {
class cf_name;
class index_name : public keyspace_element_name {
sstring _idx_name = "";
public:
void set_index(const sstring& idx, bool keep_case);
const sstring& get_idx() const;
cf_name get_cf_name() const;
virtual sstring to_string() const override;
};
}