mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
21 lines
434 B
C++
21 lines
434 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionMathConstFloat64.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct PiImpl
|
|
{
|
|
static constexpr auto name = "pi";
|
|
static constexpr double value = 3.1415926535897932384626433832795028841971693;
|
|
};
|
|
|
|
using FunctionPi = FunctionMathConstFloat64<PiImpl>;
|
|
|
|
void registerFunctionPi(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionPi>(FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|