summaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/AggregateFunctions/AggregateFunctionNull.cpp
diff options
context:
space:
mode:
authorvitalyisaev <[email protected]>2023-11-14 09:58:56 +0300
committervitalyisaev <[email protected]>2023-11-14 10:20:20 +0300
commitc2b2dfd9827a400a8495e172a56343462e3ceb82 (patch)
treecd4e4f597d01bede4c82dffeb2d780d0a9046bd0 /contrib/clickhouse/src/AggregateFunctions/AggregateFunctionNull.cpp
parentd4ae8f119e67808cb0cf776ba6e0cf95296f2df7 (diff)
YQ Connector: move tests from yql to ydb (OSS)
Перенос папки с тестами на Коннектор из папки yql в папку ydb (синхронизируется с github).
Diffstat (limited to 'contrib/clickhouse/src/AggregateFunctions/AggregateFunctionNull.cpp')
-rw-r--r--contrib/clickhouse/src/AggregateFunctions/AggregateFunctionNull.cpp139
1 files changed, 139 insertions, 0 deletions
diff --git a/contrib/clickhouse/src/AggregateFunctions/AggregateFunctionNull.cpp b/contrib/clickhouse/src/AggregateFunctions/AggregateFunctionNull.cpp
new file mode 100644
index 00000000000..3d3d7af3026
--- /dev/null
+++ b/contrib/clickhouse/src/AggregateFunctions/AggregateFunctionNull.cpp
@@ -0,0 +1,139 @@
+#include <DataTypes/DataTypeNullable.h>
+#include <AggregateFunctions/AggregateFunctionNull.h>
+#include <AggregateFunctions/AggregateFunctionNothing.h>
+#include <AggregateFunctions/AggregateFunctionCount.h>
+#include <AggregateFunctions/AggregateFunctionState.h>
+#include <AggregateFunctions/AggregateFunctionCombinatorFactory.h>
+
+
+namespace DB
+{
+
+namespace ErrorCodes
+{
+ extern const int ILLEGAL_TYPE_OF_ARGUMENT;
+}
+
+namespace
+{
+
+class AggregateFunctionCombinatorNull final : public IAggregateFunctionCombinator
+{
+public:
+ String getName() const override { return "Null"; }
+
+ bool isForInternalUsageOnly() const override { return true; }
+
+ DataTypes transformArguments(const DataTypes & arguments) const override
+ {
+ size_t size = arguments.size();
+ DataTypes res(size);
+ for (size_t i = 0; i < size; ++i)
+ {
+ /// Nullable(Nothing) is processed separately, don't convert it to Nothing.
+ if (arguments[i]->onlyNull())
+ res[i] = arguments[i];
+ else
+ res[i] = removeNullable(arguments[i]);
+ }
+ return res;
+ }
+
+ AggregateFunctionPtr transformAggregateFunction(
+ const AggregateFunctionPtr & nested_function,
+ const AggregateFunctionProperties & properties,
+ const DataTypes & arguments,
+ const Array & params) const override
+ {
+ bool has_nullable_types = false;
+ bool has_null_types = false;
+ std::unordered_set<size_t> arguments_that_can_be_only_null;
+ if (nested_function)
+ arguments_that_can_be_only_null = nested_function->getArgumentsThatCanBeOnlyNull();
+
+ for (size_t i = 0; i < arguments.size(); ++i)
+ {
+ if (arguments[i]->isNullable())
+ {
+ has_nullable_types = true;
+ if (arguments[i]->onlyNull() && !arguments_that_can_be_only_null.contains(i))
+ {
+ has_null_types = true;
+ break;
+ }
+ }
+ }
+
+ if (!has_nullable_types)
+ throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Aggregate function combinator 'Null' "
+ "requires at least one argument to be Nullable");
+
+ if (has_null_types)
+ {
+ /// Currently the only functions that returns not-NULL on all NULL arguments are count and uniq, and they returns UInt64.
+ if (properties.returns_default_when_only_null)
+ return std::make_shared<AggregateFunctionNothing>(arguments, params, std::make_shared<DataTypeUInt64>());
+ else
+ return std::make_shared<AggregateFunctionNothing>(arguments, params, std::make_shared<DataTypeNullable>(std::make_shared<DataTypeNothing>()));
+ }
+
+ assert(nested_function);
+
+ if (auto adapter = nested_function->getOwnNullAdapter(nested_function, arguments, params, properties))
+ return adapter;
+
+ /// If applied to aggregate function with -State combinator, we apply -Null combinator to it's nested_function instead of itself.
+ /// Because Nullable AggregateFunctionState does not make sense and ruins the logic of managing aggregate function states.
+
+ if (const AggregateFunctionState * function_state = typeid_cast<const AggregateFunctionState *>(nested_function.get()))
+ {
+ auto transformed_nested_function = transformAggregateFunction(function_state->getNestedFunction(), properties, arguments, params);
+
+ return std::make_shared<AggregateFunctionState>(
+ transformed_nested_function,
+ transformed_nested_function->getArgumentTypes(),
+ transformed_nested_function->getParameters());
+ }
+
+ bool return_type_is_nullable = !properties.returns_default_when_only_null && nested_function->getResultType()->canBeInsideNullable();
+ bool serialize_flag = return_type_is_nullable || properties.returns_default_when_only_null;
+
+ if (arguments.size() == 1)
+ {
+ if (return_type_is_nullable)
+ {
+ return std::make_shared<AggregateFunctionNullUnary<true, true>>(nested_function, arguments, params);
+ }
+ else
+ {
+ if (serialize_flag)
+ return std::make_shared<AggregateFunctionNullUnary<false, true>>(nested_function, arguments, params);
+ else
+ return std::make_shared<AggregateFunctionNullUnary<false, false>>(nested_function, arguments, params);
+ }
+ }
+ else
+ {
+ if (return_type_is_nullable)
+ {
+ return std::make_shared<AggregateFunctionNullVariadic<true, true>>(nested_function, arguments, params);
+ }
+ else
+ {
+ if (serialize_flag)
+ return std::make_shared<AggregateFunctionNullVariadic<false, true>>(nested_function, arguments, params);
+ else
+ return std::make_shared<AggregateFunctionNullVariadic<false, true>>(nested_function, arguments, params);
+ }
+ }
+ }
+};
+
+}
+
+void registerAggregateFunctionCombinatorNull(AggregateFunctionCombinatorFactory & factory)
+{
+ factory.registerCombinator(std::make_shared<AggregateFunctionCombinatorNull>());
+}
+
+}