mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
PR review suggestions
This commit is contained in:
parent
829c2b2355
commit
0d0d813a31
@ -94,7 +94,10 @@ private:
|
||||
using ActionMap = std::unordered_map<String, String>;
|
||||
|
||||
AggregateFunctions aggregate_functions;
|
||||
/// Mapping from functions with `RESPECT NULLS` modifier to actual aggregate function names
|
||||
/// Example: `any(x) RESPECT NULLS` should be executed as function `any_respect_nulls`
|
||||
ActionMap respect_nulls;
|
||||
/// Same as above for `IGNORE NULLS` modifier
|
||||
ActionMap ignore_nulls;
|
||||
std::optional<AggregateFunctionWithProperties> getAssociatedFunctionByNullsAction(const String & name, NullsAction action) const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user