ClickHouse/src/Functions/blockSize.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.4 KiB
C++
Raw Normal View History

2021-05-17 07:30:42 +00:00
#include <Functions/IFunction.h>
#include <Functions/FunctionFactory.h>
#include <DataTypes/DataTypesNumber.h>
#include <Columns/ColumnsNumber.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
2020-10-14 14:04:50 +00:00
/** columnsSize() - get the columns size in number of rows.
*/
class FunctionBlockSize : public IFunction
{
public:
2020-10-14 19:25:36 +00:00
static constexpr auto name = "blockSize";
2021-06-01 12:20:52 +00:00
static FunctionPtr create(ContextPtr)
{
return std::make_shared<FunctionBlockSize>();
}
/// Get the function name.
String getName() const override
{
return name;
}
bool isDeterministic() const override
{
return false;
}
bool isDeterministicInScopeOfQuery() const override
{
return false;
}
2021-06-22 16:21:23 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override
{
return false;
}
size_t getNumberOfArguments() const override
{
return 0;
}
DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override
{
return std::make_shared<DataTypeUInt64>();
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override
{
2020-10-17 16:48:53 +00:00
return ColumnUInt64::create(input_rows_count, input_rows_count);
}
};
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(BlockSize)
{
factory.registerFunction<FunctionBlockSize>();
}
}