You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a|The query contains an aggregation function that skips null values.
1167
+
|Description
1168
+
|The query contains an aggregation function that skips null values.
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
+
The query contains an aggregation function that skips null values.
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
+
1157
1212
[#_unsupported_notifications]
1158
1213
== `UNSUPPORTED` category
1159
1214
@@ -3894,9 +3949,9 @@ Query::
3894
3949
MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
3895
3950
----
3896
3951
Description of the returned code::
3897
-
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)
3898
-
3952
+
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)
3899
3953
======
3954
+
3900
3955
[.include-with-GQLSTATUS-code]
3901
3956
======
3902
3957
Query::
@@ -3914,4 +3969,3 @@ warn: repeated relationship reference.
3914
3969
`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results.
0 commit comments