summaryrefslogtreecommitdiff
path: root/sql/sql_alloc.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix many -Wunused-parameterMarko Mäkelä2018-05-011-1/+1
| | | | | | | | | | Remove unused InnoDB function parameters and functions. i_s_sys_virtual_fill_table(): Do not allocate heap memory. mtr_is_block_fix(): Replace with mtr_memo_contains(). mtr_is_page_fix(): Replace with mtr_memo_contains_page().
* Make possible to use clang on Windows (clang-cl)Vladislav Vaintroub2018-02-201-4/+2
| | | | | | -DWITH_ASAN can be used as well now, on x64 Fix many clang-cl warnings.
* Merge bb-10.2-ext into 10.3Marko Mäkelä2018-02-151-3/+3
|
* Fix inadverent change in Sql_allocVladislav Vaintroub2018-02-101-1/+1
| | | | | | For placement new, throw() exception specification was removed by accident in 8fe04a3df37d65254142c6d1297eda32c1013f7f , making debug tests, that simulate out-of-memory situations, fail (e.g filesort_debug)
* Windows, compile : reenable previously disabled warning C4291Vladislav Vaintroub2018-02-071-3/+2
| | | | | | no matching operator delete found; memory will not be freed if initialization throws an exception Added a no-op delete() for MEM_ROOT based placement-new()
* Merge bb-10.2-ext into 10.3Marko Mäkelä2017-09-251-2/+4
|
* Added sql_alloc.hMichael Widenius2017-08-241-0/+54
- Moved declaration of Sql_alloc from Sql_list.h as they are independent structures.