| 537 | } |
| 538 | |
| 539 | void Warning_info::init() |
| 540 | { |
| 541 | /* Initialize sub structures */ |
| 542 | DBUG_ASSERT(initialized == 0); |
| 543 | init_sql_alloc(PSI_INSTRUMENT_ME, &m_warn_root, WARN_ALLOC_BLOCK_SIZE, |
| 544 | WARN_ALLOC_PREALLOC_SIZE, MYF(MY_THREAD_SPECIFIC)); |
| 545 | initialized= 1; |
| 546 | } |
| 547 | |
| 548 | void Warning_info::free_memory() |
| 549 | { |
nothing calls this directly
no test coverage detected