mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
fix function names
This commit is contained in:
parent
4d7073ceed
commit
4c34d8f563
@ -21,6 +21,7 @@ class FunctionAddressToLine: public FunctionAddressToLineBase<StringRef, Dwarf::
|
||||
{
|
||||
public:
|
||||
static constexpr auto name = "addressToLine";
|
||||
String getName() const override { return name; }
|
||||
static FunctionPtr create(ContextPtr context)
|
||||
{
|
||||
context->checkAccess(AccessType::addressToLine);
|
||||
|
@ -35,8 +35,6 @@ template <typename ResultT, Dwarf::LocationInfoMode locationInfoMode>
|
||||
class FunctionAddressToLineBase : public IFunction
|
||||
{
|
||||
public:
|
||||
static constexpr auto name = "addressToLineBase";
|
||||
String getName() const override { return name; }
|
||||
|
||||
size_t getNumberOfArguments() const override { return 1; }
|
||||
|
||||
|
@ -24,6 +24,7 @@ class FunctionAddressToLineWithInlines: public FunctionAddressToLineBase<StringR
|
||||
{
|
||||
public:
|
||||
static constexpr auto name = "addressToLineWithInlines";
|
||||
String getName() const override { return name; }
|
||||
static FunctionPtr create(ContextPtr context)
|
||||
{
|
||||
context->checkAccess(AccessType::addressToLineWithInlines);
|
||||
|
Loading…
Reference in New Issue
Block a user