2021-05-17 07:30:42 +00:00
|
|
|
#include <Functions/IFunction.h>
|
2018-09-08 22:04:39 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
2018-09-08 22:57:56 +00:00
|
|
|
#include <atomic>
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-09-08 22:04:39 +00:00
|
|
|
|
2023-01-03 15:27:51 +00:00
|
|
|
/** Incremental number of row within all columns passed to this function. */
|
2018-09-08 22:04:39 +00:00
|
|
|
class FunctionRowNumberInAllBlocks : public IFunction
|
|
|
|
{
|
|
|
|
private:
|
2020-07-21 13:58:07 +00:00
|
|
|
mutable std::atomic<size_t> rows{0};
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "rowNumberInAllBlocks";
|
2021-06-01 12:20:52 +00:00
|
|
|
static FunctionPtr create(ContextPtr)
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
return std::make_shared<FunctionRowNumberInAllBlocks>();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the name of the function.
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2019-01-30 02:47:26 +00:00
|
|
|
bool isStateful() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-08 22:04:39 +00:00
|
|
|
size_t getNumberOfArguments() const override
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-01 19:00:11 +00:00
|
|
|
bool isDeterministic() const override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
bool isDeterministicInScopeOfQuery() const override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-06-22 16:21:23 +00:00
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
|
2021-04-29 14:48:26 +00:00
|
|
|
|
2018-09-08 22:04:39 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override
|
|
|
|
{
|
|
|
|
return std::make_shared<DataTypeUInt64>();
|
|
|
|
}
|
|
|
|
|
2020-11-17 13:24:45 +00:00
|
|
|
ColumnPtr executeImplDryRun(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override
|
2018-12-02 11:00:23 +00:00
|
|
|
{
|
2020-10-19 15:27:41 +00:00
|
|
|
return ColumnUInt64::create(input_rows_count);
|
2018-12-02 11:00:23 +00:00
|
|
|
}
|
|
|
|
|
2020-11-17 13:24:45 +00:00
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
size_t current_row_number = rows.fetch_add(input_rows_count);
|
|
|
|
|
|
|
|
auto column = ColumnUInt64::create();
|
|
|
|
auto & data = column->getData();
|
|
|
|
data.resize(input_rows_count);
|
|
|
|
for (size_t i = 0; i < input_rows_count; ++i)
|
|
|
|
data[i] = current_row_number + i;
|
|
|
|
|
2020-10-19 15:27:41 +00:00
|
|
|
return column;
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
2018-09-08 22:04:39 +00:00
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(RowNumberInAllBlocks)
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionRowNumberInAllBlocks>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|