Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove nil/null reply description from ZADD command #2614

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 30, 2023

  1. 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]>
    moznion committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    48b7278 View commit details
    Browse the repository at this point in the history