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
20 lines
317 B
C++
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);
|
|
|
|
}
|