mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Add 0x before pointers (to help with debugging)
Add support for VARCHAR with 1 or 2 length bytes Enable VARCHAR packing in MyISAM files (previous patch didn't pack data properly) Give error if we got problems in temporary tables during a SELECT Don't use new table generated by ALTER TABLE if index generation fails Fixed wrong call by range_end() (Could cause an ASSERT in debug mode)
This commit is contained in:
parent
b4dc75c877
commit
3fb088a075
57 changed files with 1404 additions and 459 deletions
|
|
@ -978,7 +978,7 @@ uint length)
|
|||
{
|
||||
fprintf(_db_fp_, "%s: ", state->func);
|
||||
}
|
||||
sprintf(dbuff,"%s: Memory: %lx Bytes: (%d)\n",
|
||||
sprintf(dbuff,"%s: Memory: 0x%lx Bytes: (%d)\n",
|
||||
keyword,(ulong) memory, length);
|
||||
(void) fputs(dbuff,_db_fp_);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue