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
@@ -4049,9 +4104,9 @@ Query::
4049
4104
MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
4050
4105
----
4051
4106
Description of the returned code::
4052
-
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)
4053
-
4107
+
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)
4054
4108
======
4109
+
4055
4110
[.include-with-GQLSTATUS-code]
4056
4111
======
4057
4112
Query::
@@ -4069,4 +4124,3 @@ warn: repeated relationship reference.
4069
4124
`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results.
0 commit comments