2020-06-20 09:17:43 +00:00
|
|
|
#if defined(__ELF__) && !defined(__FreeBSD__)
|
|
|
|
|
|
|
|
#include <Functions/IFunctionImpl.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <Common/SymbolIndex.h>
|
|
|
|
#include <Core/Field.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2020-06-20 09:17:43 +00:00
|
|
|
|
|
|
|
/** buildId() - returns the compiler build id of the running binary.
|
|
|
|
*/
|
2020-06-20 11:33:09 +00:00
|
|
|
class FunctionBuildId : public IFunction
|
2020-06-20 09:17:43 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "buildId";
|
|
|
|
static FunctionPtr create(const Context &)
|
|
|
|
{
|
2020-06-20 11:33:09 +00:00
|
|
|
return std::make_shared<FunctionBuildId>();
|
2020-06-20 09:17:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t getNumberOfArguments() const override
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override
|
|
|
|
{
|
|
|
|
return std::make_shared<DataTypeString>();
|
|
|
|
}
|
|
|
|
|
2020-10-17 16:48:53 +00:00
|
|
|
ColumnPtr executeImpl(ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override
|
2020-06-20 09:17:43 +00:00
|
|
|
{
|
2020-10-17 16:48:53 +00:00
|
|
|
return DataTypeString().createColumnConst(input_rows_count, SymbolIndex::instance().getBuildIDHex());
|
2020-06-20 09:17:43 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
2020-06-20 09:17:43 +00:00
|
|
|
|
2020-06-20 11:33:09 +00:00
|
|
|
void registerFunctionBuildId(FunctionFactory & factory)
|
2020-06-20 09:17:43 +00:00
|
|
|
{
|
2020-06-20 11:33:09 +00:00
|
|
|
factory.registerFunction<FunctionBuildId>();
|
2020-06-20 09:17:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-21 16:08:41 +00:00
|
|
|
#else
|
|
|
|
|
2020-06-21 21:17:19 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2020-06-21 18:52:58 +00:00
|
|
|
class FunctionFactory;
|
2020-06-21 16:08:41 +00:00
|
|
|
void registerFunctionBuildId(FunctionFactory &) {}
|
2020-06-21 21:17:19 +00:00
|
|
|
}
|
2020-06-21 16:08:41 +00:00
|
|
|
|
2020-06-20 09:17:43 +00:00
|
|
|
#endif
|