mirror of
https://github.com/MariaDB/server.git
synced 2026-05-05 06:35:33 +02:00
MDEV-8931: (server part of) session state tracking
System variables tracking
This commit is contained in:
parent
e7608a78ef
commit
c8948b0d0d
22 changed files with 1483 additions and 153 deletions
|
|
@ -359,7 +359,9 @@ public:
|
|||
if (ALIGN_SIZE(arg_length+1) < Alloced_length)
|
||||
{
|
||||
char *new_ptr;
|
||||
if (!(new_ptr=(char*) my_realloc(Ptr,arg_length,MYF(0))))
|
||||
if (!(new_ptr=(char*)
|
||||
my_realloc(Ptr, arg_length,MYF((thread_specific ?
|
||||
MY_THREAD_SPECIFIC : 0)))))
|
||||
{
|
||||
Alloced_length = 0;
|
||||
real_alloc(arg_length);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue