Files
scylladb/cql3/selection/selectable-expr.hh
Avi Kivity 66c47d40e6 cql3: selection: drop selector_factories, selectables, and selectors
The whole class hierarchy is no longer used by anything and we can just
delete it.
2023-07-03 19:45:17 +03:00

21 lines
363 B
C++

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