Skip to content

Commit cc2f575

Browse files
committed
Add notification when aggregation skips a null value
1 parent 71e27df commit cc2f575

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

modules/ROOT/pages/changelogs.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
:description: This page lists all changes to status codes per Neo4j version.
22
= Changes to status codes per Neo4j version
33

4+
== Neo4j 5.24
5+
6+
**New:**
7+
8+
[source, status codes, role="noheader"]
9+
-----
10+
Neo.ClientNotification.Statement.AggregationSkippedNull
11+
-----
12+
413
== Neo4j 5.17
514

615
**New:**

modules/ROOT/pages/notifications/all-notifications.adoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1753,3 +1753,15 @@ MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
17531753
Description of the returned code::
17541754
A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship r was repeated)
17551755
====
1756+
1757+
.Aggregation skipping a NULL value(when run on version 5.24 or newer)
1758+
====
1759+
Query::
1760+
+
1761+
[source,cypher]
1762+
----
1763+
UNWIND [1, NULL, 2] AS i RETURN count(i)
1764+
----
1765+
Description of the returned code::
1766+
null value eliminated in set function.
1767+
====

0 commit comments

Comments
 (0)