mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Merge 10.3 into 10.4
This commit is contained in:
commit
392ee571c1
32 changed files with 253 additions and 225 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue