| 260 | } |
| 261 | |
| 262 | robj *createZiplistObject(void) { |
| 263 | unsigned char *zl = ziplistNew(); |
| 264 | robj *o = createObject(OBJ_LIST,zl); |
| 265 | o->encoding = OBJ_ENCODING_ZIPLIST; |
| 266 | return o; |
| 267 | } |
| 268 | |
| 269 | robj *createSetObject(void) { |
| 270 | dict *d = dictCreate(&setDictType,NULL); |
no test coverage detected