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
Remove nil/null reply description from ZADD command
This command doesn't return nil/null reply even if the NX/XX/LT/GT
options are conflict; in that case, it returns the error reply like the
following:
```
zadd z XX NX 1 foo
-ERR XX and NX options at the same time are not compatible
zadd z NX GT 1 foo
-ERR GT, LT, and/or NX options at the same time are not compatible
zadd z LT GT 1 foo
-ERR GT, LT, and/or NX options at the same time are not compatible
```
Signed-off-by: moznion <[email protected]>
Copy file name to clipboardExpand all lines: resp2_replies.json
-1
Original file line number
Diff line number
Diff line change
@@ -1204,7 +1204,6 @@
1204
1204
],
1205
1205
"ZADD": [
1206
1206
"Any of the following:",
1207
-
"* [Nil reply](/docs/reference/protocol-spec#bulk-strings): if the operation was aborted because of a conflict with one of the _XX/NX/LT/GT_ options.",
1208
1207
"* [Integer reply](/docs/reference/protocol-spec#integers): the number of new members when the _CH_ option is not used.",
1209
1208
"* [Integer reply](/docs/reference/protocol-spec#integers): the number of new or updated members when the _CH_ option is used.",
1210
1209
"* [Bulk string reply](/docs/reference/protocol-spec#bulk-strings): the updated score of the member when the _INCR_ option is used."
0 commit comments