ClickHouse/dbms/src/Functions/registerFunctionsIntrospection.cpp

16 lines
310 B
C++
Raw Normal View History

2019-12-15 06:34:43 +00:00
#include "registerFunctions.h"
2019-07-29 22:26:44 +00:00
namespace DB
{
void registerFunctionsIntrospection(FunctionFactory & factory)
{
#if defined(OS_LINUX)
registerFunctionAddressToSymbol(factory);
registerFunctionAddressToLine(factory);
#endif
registerFunctionDemangle(factory);
2019-08-31 21:39:17 +00:00
registerFunctionTrap(factory);
2019-07-29 22:26:44 +00:00
}
}