Update combinators.md

This commit is contained in:
alexey-milovidov 2020-12-20 09:50:10 +03:00 committed by GitHub
parent 6c88912203
commit 59a3f4d835
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,7 @@ Converts an aggregate function for tables into an aggregate function for arrays
## -Distinct {#agg-functions-combinator-distinct}
Lets you select only unique values from the database.
Every unique combination of arguments will be aggregated only once. Repeating values are ignored.
Examples: `sum(DISTINCT x)`, `groupArray(DISTINCT x)`, `corrStableDistinct(DISTINCT x, y)` and so on.
## -OrDefault {#agg-functions-combinator-ordefault}