From 69a11574d2606c7b07b51c40f44ed2c265e129eb Mon Sep 17 00:00:00 2001 From: rfraposa Date: Thu, 12 Jan 2023 08:30:54 -0700 Subject: [PATCH] Update maxintersections.md --- .../aggregate-functions/reference/maxintersections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/aggregate-functions/reference/maxintersections.md b/docs/en/sql-reference/aggregate-functions/reference/maxintersections.md index f33b51f0374..6c30110970a 100644 --- a/docs/en/sql-reference/aggregate-functions/reference/maxintersections.md +++ b/docs/en/sql-reference/aggregate-functions/reference/maxintersections.md @@ -50,7 +50,7 @@ The intervals look like the following: 3 - - - 7 ``` -Notice that three of these intervals have the value 4 in common, and that is the most frequent number of intersections: +Three of these intervals have the value 4 in common, and that is the most frequent number of intersections. (The intervals `(1,3)` and `(3,7)` share an endpoint but are not considered intersecting by the `maxIntersections` function.) ```sql SELECT maxIntersections(start, end) FROM my_events;