1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

after review changes

sql/sql_class.h:
  changed methods names
sql/sql_prepare.cc:
  changed methods names
  removed incorrect comments
  added error handler
This commit is contained in:
unknown
2004-02-20 16:24:03 +02:00
parent 7dd164f730
commit 9977ce0c71
2 changed files with 19 additions and 28 deletions

View File

@@ -911,7 +911,7 @@ public:
inline CHARSET_INFO *charset() { return variables.character_set_client; }
void update_charset();
inline void ps_setup_prepare_memory()
inline void allocate_temporary_memory_pool_for_ps_preparing()
{
DBUG_ASSERT(current_statement!=0);
/*
@@ -928,7 +928,7 @@ public:
variables.query_prealloc_size);
free_list= 0;
}
inline void ps_setup_free_memory()
inline void free_temporary_memory_pool_for_ps_preparing()
{
DBUG_ASSERT(current_statement!=0);
cleanup_items(current_statement->free_list);