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:
@@ -19,8 +19,10 @@
|
||||
#include <my_rnd.h>
|
||||
#include "tap.h"
|
||||
|
||||
int cmp(void *arg __attribute__((unused)), uchar *a, uchar *b)
|
||||
int cmp(void *arg __attribute__((unused)), const void *a_, const void *b_)
|
||||
{
|
||||
const uchar *a= a_;
|
||||
const uchar *b= b_;
|
||||
return *a < *b ? -1 : *a > *b;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user