From 1e875431db49658873e3794ab092400645508723 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Mon, 22 Jan 2024 14:59:53 +0100 Subject: [PATCH] Style --- src/Analyzer/Passes/RewriteSumFunctionWithSumAndCountPass.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Analyzer/Passes/RewriteSumFunctionWithSumAndCountPass.h b/src/Analyzer/Passes/RewriteSumFunctionWithSumAndCountPass.h index bb1603472b0..e878a2c0e7a 100644 --- a/src/Analyzer/Passes/RewriteSumFunctionWithSumAndCountPass.h +++ b/src/Analyzer/Passes/RewriteSumFunctionWithSumAndCountPass.h @@ -5,7 +5,7 @@ namespace DB { -/** +/** * Rewrites `sum(column +/- literal)` into two individual functions * `sum(column)` and `literal * count(column)`. * sum(column + literal) -> sum(column) + literal * count(column)