Result handler methods for storing the ZRANGESTORE to a zset. */
| 2945 | |
| 2946 | /* Result handler methods for storing the ZRANGESTORE to a zset. */ |
| 2947 | static void zrangeResultBeginStore(zrange_result_handler *handler) |
| 2948 | { |
| 2949 | handler->dstobj = createZsetZiplistObject(); |
| 2950 | } |
| 2951 | |
| 2952 | static void zrangeResultEmitCBufferForStore(zrange_result_handler *handler, |
| 2953 | const void *value, size_t value_length_in_bytes, double score) |
nothing calls this directly
no test coverage detected