Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
uros-db committed Jul 2, 2024
1 parent 4ee37ed commit 2a5f198
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ public static String genCode(final String word, final String set, final int coll
if (collation.supportsBinaryEquality) {
return String.format(expr + "Binary(%s, %s)", word, set);
} else {
return String.format(expr + "execCollationAware(%s, %s, %d)", word, set, collationId);
return String.format(expr + "CollationAware(%s, %s, %d)", word, set, collationId);
}
}
public static int execBinary(final UTF8String word, final UTF8String set) {
Expand Down

0 comments on commit 2a5f198

Please sign in to comment.