mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
after review changes
This commit is contained in:
@ -911,7 +911,7 @@ public:
|
|||||||
inline CHARSET_INFO *charset() { return variables.character_set_client; }
|
inline CHARSET_INFO *charset() { return variables.character_set_client; }
|
||||||
void update_charset();
|
void update_charset();
|
||||||
|
|
||||||
inline void ps_setup_prepare_memory()
|
inline void allocate_temporary_memory_pool_for_ps_preparing()
|
||||||
{
|
{
|
||||||
DBUG_ASSERT(current_statement!=0);
|
DBUG_ASSERT(current_statement!=0);
|
||||||
/*
|
/*
|
||||||
@ -928,7 +928,7 @@ public:
|
|||||||
variables.query_prealloc_size);
|
variables.query_prealloc_size);
|
||||||
free_list= 0;
|
free_list= 0;
|
||||||
}
|
}
|
||||||
inline void ps_setup_free_memory()
|
inline void free_temporary_memory_pool_for_ps_preparing()
|
||||||
{
|
{
|
||||||
DBUG_ASSERT(current_statement!=0);
|
DBUG_ASSERT(current_statement!=0);
|
||||||
cleanup_items(current_statement->free_list);
|
cleanup_items(current_statement->free_list);
|
||||||
|
@ -626,10 +626,10 @@ static bool mysql_test_insert_fields(Prepared_statement *stmt,
|
|||||||
open temporary memory pool for temporary data allocated by derived
|
open temporary memory pool for temporary data allocated by derived
|
||||||
tables & preparation procedure
|
tables & preparation procedure
|
||||||
*/
|
*/
|
||||||
thd->ps_setup_prepare_memory();
|
thd->allocate_temporary_memory_pool_for_ps_preparing();
|
||||||
if (open_and_lock_tables(thd, table_list))
|
if (open_and_lock_tables(thd, table_list))
|
||||||
{
|
{
|
||||||
thd->ps_setup_free_memory();
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -642,11 +642,10 @@ static bool mysql_test_insert_fields(Prepared_statement *stmt,
|
|||||||
|
|
||||||
if (check_insert_fields(thd,table,fields,*values,1))
|
if (check_insert_fields(thd,table,fields,*values,1))
|
||||||
{
|
{
|
||||||
thd->ps_setup_free_memory();
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
}
|
}
|
||||||
// this memory pool was opened in open_and_lock_tables
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
thd->ps_setup_free_memory();
|
|
||||||
|
|
||||||
value_count= values->elements;
|
value_count= values->elements;
|
||||||
its.rewind();
|
its.rewind();
|
||||||
@ -665,8 +664,7 @@ static bool mysql_test_insert_fields(Prepared_statement *stmt,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// this memory pool was opened in open_and_lock_tables
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
thd->ps_setup_free_memory();
|
|
||||||
}
|
}
|
||||||
if (send_prep_stmt(stmt, 0))
|
if (send_prep_stmt(stmt, 0))
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
@ -702,24 +700,16 @@ static bool mysql_test_upd_fields(Prepared_statement *stmt,
|
|||||||
open temporary memory pool for temporary data allocated by derived
|
open temporary memory pool for temporary data allocated by derived
|
||||||
tables & preparation procedure
|
tables & preparation procedure
|
||||||
*/
|
*/
|
||||||
thd->ps_setup_prepare_memory();
|
thd->allocate_temporary_memory_pool_for_ps_preparing();
|
||||||
if (open_and_lock_tables(thd, table_list))
|
|
||||||
{
|
|
||||||
// this memory pool was opened in open_and_lock_tables
|
|
||||||
thd->ps_setup_free_memory();
|
|
||||||
DBUG_RETURN(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (open_and_lock_tables(thd, table_list))
|
||||||
|
goto err;
|
||||||
if (setup_tables(table_list) ||
|
if (setup_tables(table_list) ||
|
||||||
setup_fields(thd, 0, table_list, fields, 1, 0, 0) ||
|
setup_fields(thd, 0, table_list, fields, 1, 0, 0) ||
|
||||||
setup_conds(thd, table_list, &conds) || thd->net.report_error)
|
setup_conds(thd, table_list, &conds) || thd->net.report_error)
|
||||||
{
|
goto err;
|
||||||
// this memory pool was opened in open_and_lock_tables
|
|
||||||
thd->ps_setup_free_memory();
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
DBUG_RETURN(1);
|
|
||||||
}
|
|
||||||
// this memory pool was opened in open_and_lock_tables
|
|
||||||
thd->ps_setup_free_memory();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Currently return only column list info only, and we are not
|
Currently return only column list info only, and we are not
|
||||||
@ -728,6 +718,9 @@ static bool mysql_test_upd_fields(Prepared_statement *stmt,
|
|||||||
if (send_prep_stmt(stmt, 0))
|
if (send_prep_stmt(stmt, 0))
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
DBUG_RETURN(0);
|
DBUG_RETURN(0);
|
||||||
|
err:
|
||||||
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
|
DBUG_RETURN(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -777,7 +770,7 @@ static bool mysql_test_select_fields(Prepared_statement *stmt,
|
|||||||
open temporary memory pool for temporary data allocated by derived
|
open temporary memory pool for temporary data allocated by derived
|
||||||
tables & preparation procedure
|
tables & preparation procedure
|
||||||
*/
|
*/
|
||||||
thd->ps_setup_prepare_memory();
|
thd->allocate_temporary_memory_pool_for_ps_preparing();
|
||||||
if (open_and_lock_tables(thd, tables))
|
if (open_and_lock_tables(thd, tables))
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
@ -809,15 +802,13 @@ static bool mysql_test_select_fields(Prepared_statement *stmt,
|
|||||||
|
|
||||||
unit->cleanup();
|
unit->cleanup();
|
||||||
}
|
}
|
||||||
// this memory pool was opened in open_and_lock_tables
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
thd->ps_setup_free_memory();
|
|
||||||
DBUG_RETURN(0);
|
DBUG_RETURN(0);
|
||||||
|
|
||||||
err_prep:
|
err_prep:
|
||||||
unit->cleanup();
|
unit->cleanup();
|
||||||
err:
|
err:
|
||||||
// this memory pool was opened in open_and_lock_tables
|
thd->free_temporary_memory_pool_for_ps_preparing();
|
||||||
thd->ps_setup_free_memory();
|
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user