Wrapper for compareStringObjectsWithFlags() using collation. */
| 626 | |
| 627 | /* Wrapper for compareStringObjectsWithFlags() using collation. */ |
| 628 | int collateStringObjects(robj *a, robj *b) { |
| 629 | return compareStringObjectsWithFlags(a,b,REDIS_COMPARE_COLL); |
| 630 | } |
| 631 | |
| 632 | /* Equal string objects return 1 if the two objects are the same from the |
| 633 | * point of view of a string comparison, otherwise 0 is returned. Note that |
no test coverage detected