aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Analyzer/AggregationUtils.h
blob: a2119f716a892f86f80e92a1982e99d45adcb08c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once

#include <Analyzer/IQueryTreeNode.h>

namespace DB
{

/** Collect aggregate function nodes in node children.
  * Do not visit subqueries.
  */
QueryTreeNodes collectAggregateFunctionNodes(const QueryTreeNodePtr & node);

/** Collect aggregate function nodes in node children and add them into result.
  * Do not visit subqueries.
  */
void collectAggregateFunctionNodes(const QueryTreeNodePtr & node, QueryTreeNodes & result);

/** Returns true if there are aggregate function nodes in node children, false otherwise.
  * Do not visit subqueries.
  */
bool hasAggregateFunctionNodes(const QueryTreeNodePtr & node);

/** Assert that there are no aggregate function nodes in node children.
  * Do not visit subqueries.
  */
void assertNoAggregateFunctionNodes(const QueryTreeNodePtr & node, const String & assert_no_aggregates_place_message);

/** Assert that there are no GROUPING function nodes in node children.
  * Do not visit subqueries.
  */
void assertNoGroupingFunctionNodes(const QueryTreeNodePtr & node, const String & assert_no_grouping_function_place_message);

}