Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
33 lines
702 B
C++
33 lines
702 B
C++
/*
|
|
* Copyright (C) 2014-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "bytes_fwd.hh"
|
|
#include "function.hh"
|
|
#include <span>
|
|
|
|
namespace db::functions {
|
|
|
|
class scalar_function : public virtual function {
|
|
public:
|
|
/**
|
|
* Applies this function to the specified parameter.
|
|
*
|
|
* @param parameters the input parameters
|
|
* @return the result of applying this function to the parameter
|
|
* @throws InvalidRequestException if this function cannot not be applied to the parameter
|
|
*/
|
|
virtual bytes_opt execute(std::span<const bytes_opt> parameters) = 0;
|
|
};
|
|
|
|
|
|
}
|