1
0
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:
Marko Mäkelä
2024-12-02 11:35:34 +02:00
420 changed files with 6452 additions and 4162 deletions

View File

@@ -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;
}