mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Stage 2 of MDEV-6152:
- Added mem_root to all calls to new Item - Added private method operator new(size_t size) to Item to ensure that we always use a mem_root when creating an item. This saves use once call to current_thd per Item creation
This commit is contained in:
@ -4000,13 +4000,15 @@ err:
|
||||
bool show_binlog_info(THD* thd)
|
||||
{
|
||||
Protocol *protocol= thd->protocol;
|
||||
MEM_ROOT *mem_root= thd->mem_root;
|
||||
DBUG_ENTER("show_binlog_info");
|
||||
|
||||
List<Item> field_list;
|
||||
field_list.push_back(new Item_empty_string(thd, "File", FN_REFLEN));
|
||||
field_list.push_back(new Item_return_int(thd, "Position", 20,
|
||||
field_list.push_back(new (mem_root) Item_empty_string(thd, "File", FN_REFLEN));
|
||||
field_list.push_back(new (mem_root) Item_return_int(thd, "Position", 20,
|
||||
MYSQL_TYPE_LONGLONG));
|
||||
field_list.push_back(new Item_empty_string(thd, "Binlog_Do_DB", 255));
|
||||
field_list.push_back(new Item_empty_string(thd, "Binlog_Ignore_DB", 255));
|
||||
field_list.push_back(new (mem_root) Item_empty_string(thd, "Binlog_Do_DB", 255));
|
||||
field_list.push_back(new (mem_root) Item_empty_string(thd, "Binlog_Ignore_DB", 255));
|
||||
|
||||
if (protocol->send_result_set_metadata(&field_list,
|
||||
Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF))
|
||||
@ -4049,6 +4051,7 @@ bool show_binlogs(THD* thd)
|
||||
uint length;
|
||||
int cur_dir_len;
|
||||
Protocol *protocol= thd->protocol;
|
||||
MEM_ROOT *mem_root= thd->mem_root;
|
||||
DBUG_ENTER("show_binlogs");
|
||||
|
||||
if (!mysql_bin_log.is_open())
|
||||
@ -4057,9 +4060,9 @@ bool show_binlogs(THD* thd)
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
|
||||
field_list.push_back(new Item_empty_string(thd, "Log_name", 255));
|
||||
field_list.push_back(new Item_return_int(thd, "File_size", 20,
|
||||
MYSQL_TYPE_LONGLONG));
|
||||
field_list.push_back(new (mem_root) Item_empty_string(thd, "Log_name", 255));
|
||||
field_list.push_back(new (mem_root) Item_return_int(thd, "File_size", 20,
|
||||
MYSQL_TYPE_LONGLONG));
|
||||
if (protocol->send_result_set_metadata(&field_list,
|
||||
Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF))
|
||||
DBUG_RETURN(TRUE);
|
||||
|
Reference in New Issue
Block a user