This commit is contained in:
Raúl Marín 2024-01-22 14:59:53 +01:00 committed by GitHub
parent 3d0e915088
commit 1e875431db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)