Files
scylladb/cql3/selection/selector.hh
Kefu Chai ee80742c39 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#19906
2024-07-28 17:29:07 +03:00

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&);
}
}