@@ -25,9 +25,7 @@ AVG(numeric_field) <1>
2525
2626*Output*: `double` numeric value
2727
28- .Description:
29-
30- Returns the https://en.wikipedia.org/wiki/Arithmetic_mean[Average] (arithmetic mean) of input values.
28+ *Description*: Returns the https://en.wikipedia.org/wiki/Arithmetic_mean[Average] (arithmetic mean) of input values.
3129
3230["source","sql",subs="attributes,macros"]
3331--------------------------------------------------
@@ -49,9 +47,7 @@ COUNT(expression) <1>
4947
5048*Output*: numeric value
5149
52- .Description:
53-
54- Returns the total number (count) of input values.
50+ *Description*: Returns the total number (count) of input values.
5551
5652In case of `COUNT(*)` or `COUNT(<literal>)`, _all_ values are considered (including `null` or missing ones).
5753
@@ -79,9 +75,7 @@ COUNT(ALL field_name) <1>
7975
8076*Output*: numeric value
8177
82- .Description:
83-
84- Returns the total number (count) of all _non-null_ input values. `COUNT(<field_name>)` and `COUNT(ALL <field_name>)` are equivalent.
78+ *Description*: Returns the total number (count) of all _non-null_ input values. `COUNT(<field_name>)` and `COUNT(ALL <field_name>)` are equivalent.
8579
8680["source","sql",subs="attributes,macros"]
8781--------------------------------------------------
@@ -104,9 +98,7 @@ COUNT(DISTINCT field_name) <1>
10498
10599*Output*: numeric value
106100
107- .Description:
108-
109- Returns the total number of _distinct non-null_ values in input values.
101+ *Description*: Returns the total number of _distinct non-null_ values in input values.
110102
111103["source","sql",subs="attributes,macros"]
112104--------------------------------------------------
@@ -131,9 +123,7 @@ FIRST(
131123
132124*Output*: same type as the input
133125
134- .Description:
135-
136- Returns the first **non-NULL** value (if such exists) of the `field_name` input column sorted by
126+ *Description*: Returns the first **non-NULL** value (if such exists) of the `field_name` input column sorted by
137127the `ordering_field_name` column. If `ordering_field_name` is not provided, only the `field_name`
138128column is used for the sorting. E.g.:
139129
@@ -228,10 +218,8 @@ LAST(
228218
229219*Output*: same type as the input
230220
231- .Description:
232-
233- It's the inverse of <<sql-functions-aggs-first>>. Returns the last **non-NULL** value (if such exists) of the
234- `field_name`input column sorted descending by the `ordering_field_name` column. If `ordering_field_name` is not
221+ *Description*: It's the inverse of <<sql-functions-aggs-first>>. Returns the last **non-NULL** value (if such exists) of the
222+ `field_name` input column sorted descending by the `ordering_field_name` column. If `ordering_field_name` is not
235223provided, only the `field_name` column is used for the sorting. E.g.:
236224
237225[cols="<,<"]
@@ -322,9 +310,7 @@ MAX(field_name) <1>
322310
323311*Output*: same type as the input
324312
325- .Description:
326-
327- Returns the maximum value across input values in the field `field_name`.
313+ *Description*: Returns the maximum value across input values in the field `field_name`.
328314
329315["source","sql",subs="attributes,macros"]
330316--------------------------------------------------
@@ -350,9 +336,7 @@ MIN(field_name) <1>
350336
351337*Output*: same type as the input
352338
353- .Description:
354-
355- Returns the minimum value across input values in the field `field_name`.
339+ *Description*: Returns the minimum value across input values in the field `field_name`.
356340
357341["source","sql",subs="attributes,macros"]
358342--------------------------------------------------
@@ -378,9 +362,7 @@ SUM(field_name) <1>
378362
379363*Output*: `bigint` for integer input, `double` for floating points
380364
381- .Description:
382-
383- Returns the sum of input values in the field `field_name`.
365+ *Description*: Returns the sum of input values in the field `field_name`.
384366
385367["source","sql",subs="attributes,macros"]
386368--------------------------------------------------
@@ -406,7 +388,7 @@ KURTOSIS(field_name) <1>
406388
407389*Output*: `double` numeric value
408390
409- . Description:
391+ * Description* :
410392
411393https://en.wikipedia.org/wiki/Kurtosis[Quantify] the shape of the distribution of input values in the field `field_name`.
412394
@@ -430,7 +412,7 @@ MAD(field_name) <1>
430412
431413*Output*: `double` numeric value
432414
433- . Description:
415+ * Description* :
434416
435417https://en.wikipedia.org/wiki/Median_absolute_deviation[Measure] the variability of the input values in the field `field_name`.
436418
@@ -457,7 +439,7 @@ PERCENTILE(
457439
458440*Output*: `double` numeric value
459441
460- . Description:
442+ * Description* :
461443
462444Returns the nth https://en.wikipedia.org/wiki/Percentile[percentile] (represented by `numeric_exp` parameter)
463445of input values in the field `field_name`.
@@ -485,7 +467,7 @@ PERCENTILE_RANK(
485467
486468*Output*: `double` numeric value
487469
488- . Description:
470+ * Description* :
489471
490472Returns the nth https://en.wikipedia.org/wiki/Percentile_rank[percentile rank] (represented by `numeric_exp` parameter)
491473of input values in the field `field_name`.
@@ -510,7 +492,7 @@ SKEWNESS(field_name) <1>
510492
511493*Output*: `double` numeric value
512494
513- . Description:
495+ * Description* :
514496
515497https://en.wikipedia.org/wiki/Skewness[Quantify] the asymmetric distribution of input values in the field `field_name`.
516498
@@ -534,7 +516,7 @@ STDDEV_POP(field_name) <1>
534516
535517*Output*: `double` numeric value
536518
537- . Description:
519+ * Description* :
538520
539521Returns the https://en.wikipedia.org/wiki/Standard_deviations[population standard deviation] of input values in the field `field_name`.
540522
@@ -558,7 +540,7 @@ SUM_OF_SQUARES(field_name) <1>
558540
559541*Output*: `double` numeric value
560542
561- . Description:
543+ * Description* :
562544
563545Returns the https://en.wikipedia.org/wiki/Total_sum_of_squares[sum of squares] of input values in the field `field_name`.
564546
@@ -582,7 +564,7 @@ VAR_POP(field_name) <1>
582564
583565*Output*: `double` numeric value
584566
585- . Description:
567+ * Description* :
586568
587569Returns the https://en.wikipedia.org/wiki/Variance[population variance] of input values in the field `field_name`.
588570
0 commit comments