Files
scylladb/cql3/selection/selectable-expr.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

20 lines
317 B
C++

/*
* Copyright (C) 2021-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
#include "cql3/expr/expression.hh"
namespace cql3::selection {
expr::expression make_count_rows_function_expression();
bool selectable_processes_selection(const expr::expression& raw_selectable);
}