| 475 | bool no_error; /* suppress error message (convert it to warnings) */ |
| 476 | |
| 477 | static void *operator new(size_t size) throw () |
| 478 | { |
| 479 | return sql_alloc(size); |
| 480 | } |
| 481 | static void *operator new(size_t size, MEM_ROOT *mem_root) throw () |
| 482 | { return (void*) alloc_root(mem_root, (uint) size); } |
| 483 | static void operator delete(void *ptr,size_t size) { TRASH(ptr, size); } |
nothing calls this directly
no test coverage detected