Merge 10.3 into 10.4

This commit is contained in:
Marko Mäkelä 2022-07-01 13:10:36 +03:00
commit 392ee571c1
32 changed files with 253 additions and 225 deletions

View file

@ -1266,7 +1266,10 @@ void buf_page_print(const byte *read_buf, ulint zip_size)
byte row[64];
for (byte *r= row; r != &row[64]; r+= 2, read_buf++)
r[0]= hex_to_ascii(*read_buf >> 4), r[1]= hex_to_ascii(*read_buf & 15);
{
r[0]= hex_to_ascii(byte(*read_buf >> 4));
r[1]= hex_to_ascii(*read_buf & 15);
}
sql_print_information("InnoDB: %.*s", 64, row);
}