mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.11 into 11.4
This commit is contained in:
@@ -1032,10 +1032,11 @@ got_error:
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
extern "C" int refpos_order_cmp(void* arg, const void *a,const void *b)
|
||||
extern "C" int refpos_order_cmp(void *arg, const void *a, const void *b)
|
||||
{
|
||||
handler *file= (handler*)arg;
|
||||
return file->cmp_ref((const uchar*)a, (const uchar*)b);
|
||||
auto file= static_cast<handler *>(arg);
|
||||
return file->cmp_ref(static_cast<const uchar *>(a),
|
||||
static_cast<const uchar *>(b));
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user