Skip to content

Commit 0ee44c9

Browse files
committed
move aggregate skipped null under unrecongnized and add notification details
1 parent ed47192 commit 0ee44c9

File tree

1 file changed

+68
-6
lines changed

1 file changed

+68
-6
lines changed

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

Lines changed: 68 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

@@ -4052,14 +4107,21 @@ Description of the returned code::
40524107
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)
40534108
====
40544109
4055-
.Aggregation skipping a NULL value(when run on version 5.24 or newer)
4056-
====
4110+
======
4111+
[.include-with-GQLSTATUS-code]
4112+
======
40574113
Query::
40584114
+
40594115
[source,cypher]
40604116
----
4061-
UNWIND [1, NULL, 2] AS i RETURN count(i)
4117+
MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
40624118
----
4063-
Description of the returned code::
4064-
null value eliminated in set function.
4065-
====
4119+
4120+
Returned GQLSTATUS code::
4121+
01N63
4122+
4123+
Returned status description::
4124+
warn: repeated relationship reference.
4125+
`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results.
4126+
======
4127+
=====

0 commit comments

Comments
 (0)