mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
After merge fixes of merge with 4.1 that included the new arena code.
Fixed (together with Guilhem) bugs in mysqlbinlog regarding --offset Prefix addresses with 0x for easier comparisons of debug logs Fixed problem where MySQL choosed index-read even if there would be a much better range on the same index This fix changed some 'index' queries to 'range' queries in the test suite Don't create 'dummy' WHERE clause for trivial WHERE clauses where we can remove the WHERE clause. This fix removed of a lot of 'Using where' notes in the test suite. Give NOTE instead of WARNING if table/function doesn't exists when using DROP IF EXISTS Give NOTE instead of WARNING for safe field-type conversions
This commit is contained in:
parent
31122efde7
commit
f2829d0386
67 changed files with 685 additions and 480 deletions
|
|
@ -133,6 +133,7 @@ gptr alloc_root(MEM_ROOT *mem_root,unsigned int Size)
|
|||
next->next= mem_root->used;
|
||||
next->size= Size;
|
||||
mem_root->used= next;
|
||||
DBUG_PRINT("exit",("ptr: 0x%lx", (((char*) next)+ALIGN_SIZE(sizeof(USED_MEM)))));
|
||||
DBUG_RETURN((gptr) (((char*) next)+ALIGN_SIZE(sizeof(USED_MEM))));
|
||||
#else
|
||||
uint get_size, block_size;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue