Skip to content

Commit 5d88826

Browse files
Merge pull request #6573 from michaelbrichko/user/mbrichko/aggregations_with_nulls
Remove wrong null counting notes
2 parents 784b847 + 6b74ac3 commit 5d88826

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

data-explorer/kusto/query/count-aggregation-function.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || micro
1010

1111
> [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)] [!INCLUDE [monitor](../includes/applies-to-version/monitor.md)] [!INCLUDE [sentinel](../includes/applies-to-version/sentinel.md)]
1212
13-
1413
Counts the number of records per summarization group, or total if summarization is done without grouping.
1514

16-
[!INCLUDE [ignore-nulls](../includes/ignore-nulls.md)]
1715
::: moniker range="microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
1816
To only count records for which a predicate returns `true`, use [countif()](countif-aggregation-function.md).
1917
::: moniker-end

data-explorer/kusto/query/count-distinct-aggregation-function.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ ms.date: 08/11/2024
1111
1212
Counts unique values specified by the scalar expression per summary group, or the total number of unique values if the summary group is omitted.
1313

14-
[!INCLUDE [ignore-nulls](../includes/ignore-nulls.md)]
15-
1614
[!INCLUDE [data-explorer-agg-function-summarize-note](../includes/agg-function-summarize-note.md)]
1715

1816
If you only need an estimation of unique values count, we recommend using the less resource-consuming [`dcount`](dcount-aggregation-function.md) aggregation function.

data-explorer/kusto/query/countif-aggregation-function.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ ms.date: 08/11/2024
1111
1212
Counts the rows in which *predicate* evaluates to `true`.
1313

14-
[!INCLUDE [ignore-nulls](../includes/ignore-nulls.md)]
15-
1614
[!INCLUDE [data-explorer-agg-function-summarize-note](../includes/agg-function-summarize-note.md)]
1715

1816
## Syntax

data-explorer/kusto/query/scalar-data-types/null-values.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ datatable(val:int)[5, int(null)]
7575

7676
When applying the following operators to entities that include null values, the null values are ignored and don't factor into the calculation:
7777

78-
* [count()](../count-aggregation-function.md)
79-
* [count_distinct()](../count-distinct-aggregation-function.md)
80-
* [countif()](../countif-aggregation-function.md)
8178
* [dcount()](../dcount-aggregation-function.md)
8279
* [dcountif()](../dcountif-aggregation-function.md)
8380
* [make_bag()](../make-bag-aggregation-function.md)

0 commit comments

Comments
 (0)