mirror of
https://github.com/fluencelabs/redis
synced 2025-06-13 17:21:20 +00:00
Modules: sorted set iterators WIP #2.
This commit is contained in:
@ -244,7 +244,7 @@ int zslDelete(zskiplist *zsl, double score, sds ele, zskiplistNode **node) {
|
||||
return 0; /* not found */
|
||||
}
|
||||
|
||||
static int zslValueGteMin(double value, zrangespec *spec) {
|
||||
int zslValueGteMin(double value, zrangespec *spec) {
|
||||
return spec->minex ? (value > spec->min) : (value >= spec->min);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user