You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kvrocks.apache.org by "enjoy-binbin (via GitHub)" <gi...@apache.org> on 2023/07/10 08:07:57 UTC

[GitHub] [kvrocks] enjoy-binbin opened a new pull request, #1573: Fix GEOHASH should return nil array instead of error for non-existing key

enjoy-binbin opened a new pull request, #1573:
URL: https://github.com/apache/kvrocks/pull/1573

   The current code GETHASH returns an error for a key
   that doesn't exist:
   ```
   127.0.0.1:6666> geohash mykey a b c
   (error) ERR NotFound:
   ```
   
   In Redis this would return:
   ```
   127.0.0.1:6379> geohash mykey a b c
   1) (nil)
   2) (nil)
   3) (nil)
   ```
   
   This PR fixes the inconsistency in this case.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@kvrocks.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [kvrocks] git-hulk merged pull request #1573: Fix GEOHASH / GEOPOS should return nil array instead of error for non-existing key

Posted by "git-hulk (via GitHub)" <gi...@apache.org>.
git-hulk merged PR #1573:
URL: https://github.com/apache/kvrocks/pull/1573


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@kvrocks.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org