Moving `function`, `function_name` and `aggregate_function` into db namespace to avoid including cql3 namespace into query-request. For now, only minimal subset of cql3 function was moved to db.
22 lines
283 B
C++
22 lines
283 B
C++
/*
|
|
* Copyright (C) 2014-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "db/functions/function.hh"
|
|
|
|
namespace cql3 {
|
|
namespace functions {
|
|
|
|
using function = db::functions::function;
|
|
|
|
}
|
|
}
|