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#19906
32 lines
431 B
C++
32 lines
431 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/expr/expression.hh"
|
|
|
|
namespace cql3 {
|
|
|
|
namespace selection {
|
|
|
|
|
|
// An entry in the SELECT clause.
|
|
struct prepared_selector {
|
|
expr::expression expr;
|
|
::shared_ptr<column_identifier> alias;
|
|
};
|
|
|
|
bool processes_selection(const prepared_selector&);
|
|
|
|
|
|
}
|
|
|
|
}
|