1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge branch '10.5' into 10.6

This commit is contained in:
Sergei Golubchik
2022-10-02 22:14:21 +02:00
245 changed files with 9723 additions and 2458 deletions

View File

@ -173,6 +173,17 @@ void Binary_string::qs_append_hex(const char *str, uint32 len)
}
void Binary_string::qs_append_hex_uint32(uint32 num)
{
char *to= Ptr + str_length;
APPEND_HEX(to, (uchar) (num >> 24));
APPEND_HEX(to, (uchar) (num >> 16));
APPEND_HEX(to, (uchar) (num >> 8));
APPEND_HEX(to, (uchar) num);
str_length+= 8;
}
// Convert a string to its HEX representation
bool Binary_string::set_hex(const char *str, uint32 len)
{