mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.4' into 10.5
This commit is contained in:
@@ -789,7 +789,9 @@ int Arg_comparator::compare_e_string()
|
||||
{
|
||||
String *res1,*res2;
|
||||
res1= (*a)->val_str(&value1);
|
||||
DBUG_ASSERT((res1 == NULL) == (*a)->null_value);
|
||||
res2= (*b)->val_str(&value2);
|
||||
DBUG_ASSERT((res2 == NULL) == (*b)->null_value);
|
||||
if (!res1 || !res2)
|
||||
return MY_TEST(res1 == res2);
|
||||
return MY_TEST(sortcmp(res1, res2, compare_collation()) == 0);
|
||||
|
Reference in New Issue
Block a user