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
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#include <Functions/IFunctionImpl.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <Core/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class FunctionCurrentUser : public IFunction
|
|
{
|
|
const String user_name;
|
|
|
|
public:
|
|
static constexpr auto name = "currentUser";
|
|
static FunctionPtr create(const Context & context)
|
|
{
|
|
return std::make_shared<FunctionCurrentUser>(context.getClientInfo().initial_user);
|
|
}
|
|
|
|
explicit FunctionCurrentUser(const String & user_name_) : user_name{user_name_}
|
|
{
|
|
}
|
|
|
|
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>();
|
|
}
|
|
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers &, size_t result, size_t input_rows_count) override
|
|
{
|
|
block.getByPosition(result).column = DataTypeString().createColumnConst(input_rows_count, user_name);
|
|
}
|
|
};
|
|
|
|
|
|
void registerFunctionCurrentUser(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionCurrentUser>();
|
|
factory.registerAlias("user", FunctionCurrentUser::name, FunctionFactory::CaseInsensitive);
|
|
}
|
|
|
|
}
|