@@ -1154,6 +1154,61 @@ If you plan to create that property key in the future, no change is needed.
11541154======
11551155=====
11561156
1157+ [#_neo_clientnotification_statement_AggregationSkippedNull]
1158+ === Aggregation skipped null
1159+
1160+ .Notification details
1161+ [cols="<1s,<4"]
1162+ |===
1163+ |Neo4j code
1164+ m|Neo.ClientNotification.Statement.AggregationSkippedNull
1165+ |Title
1166+ a|
1167+ |Description
1168+ |null value eliminated in set function.
1169+ |Category
1170+ m|UNRECOGNIZED
1171+ |GQLSTATUS code
1172+ m|01G11
1173+ |Status description
1174+ a|warn: null value eliminated in set function.
1175+ |Classification
1176+ m|UNRECOGNIZED
1177+ |SeverityLevel
1178+ m|WARNING
1179+ |===
1180+
1181+ .Aggregation skipping a NULL value
1182+ [.tabbed-example]
1183+ =====
1184+ [.include-with-neo4j-code]
1185+ ======
1186+ Query::
1187+
1188+ [source,cypher]
1189+ ----
1190+ UNWIND [1, NULL, 2] AS i RETURN count(i) AS sum
1191+ ----
1192+ Description of the returned code::
1193+ null value eliminated in set function.
1194+ ======
1195+ [.include-with-GQLSTATUS-code]
1196+ ======
1197+ Query::
1198+ +
1199+ [source,cypher]
1200+ ----
1201+ UNWIND [1, NULL, 2] AS i RETURN count(i) AS sum
1202+ ----
1203+
1204+ Returned GQLSTATUS code::
1205+ 01G11
1206+
1207+ Returned status description::
1208+ warn: null value eliminated in set function.
1209+ ======
1210+ =====
1211+
11571212[#_unsupported_notifications]
11581213== `UNSUPPORTED` category
11591214
@@ -3813,17 +3868,3 @@ warn: repeated relationship reference.
38133868`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results.
38143869======
38153870=====
3816-
3817-
3818- .Aggregation skipping a NULL value (when run on version 5.24 or newer)
3819- ====
3820- Query::
3821-
3822- [source,cypher]
3823- ----
3824- UNWIND [1, NULL, 2] AS i RETURN count(i)
3825- ----
3826- Description of the returned code::
3827- null value eliminated in set function.
3828- ====
3829-
0 commit comments