Wrapper for compareStringObjectsWithFlags() using collation. */
| 584 | |
| 585 | /* Wrapper for compareStringObjectsWithFlags() using collation. */ |
| 586 | int collateStringObjects(robj *a, robj *b) { |
| 587 | return compareStringObjectsWithFlags(a,b,REDIS_COMPARE_COLL); |
| 588 | } |
| 589 | |
| 590 | /* Equal string objects return 1 if the two objects are the same from the |
| 591 | * point of view of a string comparison, otherwise 0 is returned. Note that |
no test coverage detected