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

37 lines
558 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 <vector>
#include "query-request.hh"
#include "types/types.hh"
#include "schema/schema_fwd.hh"
#include "counters.hh"
#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&);
}
}