From: Dmitry Shulga Date: May 20 2011 7:11pm Subject: bzr commit into mysql-trunk branch (Dmitry.Shulga:3377) Bug#38813 Bug#11749345 List-Archive: http://lists.mysql.com/commits/137816 X-Bug: 38813,11749345 Message-Id: <201105201911.p4KJBfte010662@acsmt358.oracle.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7248926848477809669==" --===============7248926848477809669== MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline #At file:///Users/shulga/projects/mysql/mysql-trunk/ based on revid:mayank.prasad@stripped 3377 Dmitry Shulga 2011-05-21 [merge] Manual merge of patch for Bug#11749345 (formerly known as bug#38813) from 5.5->trunk. modified: sql/sql_show.cc === modified file 'sql/sql_show.cc' --- a/sql/sql_show.cc 2011-05-04 07:51:15 +0000 +++ b/sql/sql_show.cc 2011-05-20 19:11:12 +0000 @@ -2408,12 +2408,11 @@ bool schema_table_store_record(THD *thd, } -int make_table_list(THD *thd, SELECT_LEX *sel, - LEX_STRING *db_name, LEX_STRING *table_name) +static int make_table_list(THD *thd, SELECT_LEX *sel, + LEX_STRING *db_name, LEX_STRING *table_name) { Table_ident *table_ident; table_ident= new Table_ident(thd, *db_name, *table_name, 1); - sel->init_query(); if (!sel->add_table_to_list(thd, table_ident, 0, 0, TL_READ, MDL_SHARED_READ)) return 1; return 0; @@ -2983,98 +2982,196 @@ make_table_name_list(THD *thd, Listmem_root, + Query_arena::STMT_CONVENTIONAL_EXECUTION), + backup_arena, *old_arena; + LEX *old_lex= thd->lex, temp_lex, *lex; + LEX_STRING db_name, table_name; + TABLE_LIST *table_list; + bool result= true; -static int -fill_schema_show_cols_or_idxs(THD *thd, TABLE_LIST *tables, - ST_SCHEMA_TABLE *schema_table, - bool can_deadlock, - Open_tables_backup *open_tables_state_backup) -{ - LEX *lex= thd->lex; - bool res; - LEX_STRING tmp_lex_string, tmp_lex_string1, *db_name, *table_name; - enum_sql_command save_sql_command= lex->sql_command; - TABLE_LIST *show_table_list= tables->schema_select_lex->table_list.first; - TABLE *table= tables->table; - int error= 1; - DBUG_ENTER("fill_schema_show"); + DBUG_ENTER("fill_schema_table_by_open"); + /* + When a view is opened its structures are allocated on a permanent + statement arena and linked into the LEX tree for the current statement + (this happens even in cases when view is handled through TEMPTABLE + algorithm). + + To prevent this process from unnecessary hogging of memory in the permanent + arena of our I_S query and to avoid damaging its LEX we use temporary + arena and LEX for table/view opening. + + Use temporary arena instead of statement permanent arena. Also make + it active arena and save original one for successive restoring. + */ + old_arena= thd->stmt_arena; + thd->stmt_arena= &i_s_arena; + thd->set_n_backup_active_arena(&i_s_arena, &backup_arena); + + /* Prepare temporary LEX. */ + thd->lex= lex= &temp_lex; + lex_start(thd); + + /* Disable constant subquery evaluation as we won't be locking tables. */ + lex->context_analysis_only= CONTEXT_ANALYSIS_ONLY_VIEW; + + /* + Some of process_table() functions rely on wildcard being passed from + old LEX (or at least being initialized). + */ + lex->wild= old_lex->wild; - lex->all_selects_list= tables->schema_select_lex; /* - Restore thd->temporary_tables to be able to process - temporary tables(only for 'show index' & 'show columns'). - This should be changed when processing of temporary tables for - I_S tables will be done. + Since make_table_list() might change database and table name passed + to it we create copies of orig_db_name and orig_table_name here. + These copies are used for make_table_list() while unaltered values + are passed to process_table() functions. */ - thd->temporary_tables= open_tables_state_backup->temporary_tables; + if (!thd->make_lex_string(&db_name, orig_db_name->str, + orig_db_name->length, FALSE) || + !thd->make_lex_string(&table_name, orig_table_name->str, + orig_table_name->length, FALSE)) + goto end; + + /* + Create table list element for table to be open. Link it with the + temporary LEX. The latter is required to correctly open views and + produce table describing their structure. + */ + if (make_table_list(thd, &lex->select_lex, &db_name, &table_name)) + goto end; + + table_list= lex->select_lex.table_list.first; + + if (is_show_fields_or_keys) + { + /* + Restore thd->temporary_tables to be able to process + temporary tables (only for 'show index' & 'show columns'). + This should be changed when processing of temporary tables for + I_S tables will be done. + */ + thd->temporary_tables= open_tables_state_backup->temporary_tables; + } + else + { + /* + Apply optimization flags for table opening which are relevant for + this I_S table. We can't do this for SHOW COLUMNS/KEYS because of + backward compatibility. + */ + table_list->i_s_requested_object= schema_table->i_s_requested_object; + } + /* Let us set fake sql_command so views won't try to merge themselves into main statement. If we don't do this, SELECT * from information_schema.xxxx will cause problems. - SQLCOM_SHOW_FIELDS is used because it satisfies 'only_view_structure()' + SQLCOM_SHOW_FIELDS is used because it satisfies + 'only_view_structure()'. */ lex->sql_command= SQLCOM_SHOW_FIELDS; - res= open_temporary_tables(thd, show_table_list); + result= open_temporary_tables(thd, table_list); - if (!res) + if (!result) { - res= open_normal_and_derived_tables(thd, show_table_list, - (MYSQL_OPEN_IGNORE_FLUSH | - MYSQL_OPEN_FORCE_SHARED_HIGH_PRIO_MDL | - (can_deadlock ? - MYSQL_OPEN_FAIL_ON_MDL_CONFLICT : 0))); + result= open_normal_and_derived_tables(thd, table_list, + (MYSQL_OPEN_IGNORE_FLUSH | + MYSQL_OPEN_FORCE_SHARED_HIGH_PRIO_MDL | + (can_deadlock ? + MYSQL_OPEN_FAIL_ON_MDL_CONFLICT : 0))); } - - lex->sql_command= save_sql_command; + /* + Restore old value of sql_command back as it is being looked at in + process_table() function. + */ + lex->sql_command= old_lex->sql_command; DEBUG_SYNC(thd, "after_open_table_ignore_flush"); /* - get_all_tables() returns 1 on failure and 0 on success thus - return only these and not the result code of ::process_table() + XXX: show_table_list has a flag i_is_requested, + and when it's set, open_normal_and_derived_tables() + can return an error without setting an error message + in THD, which is a hack. This is why we have to + check for res, then for thd->is_error() and only then + for thd->main_da.sql_errno(). - We should use show_table_list->alias instead of - show_table_list->table_name because table_name - could be changed during opening of I_S tables. It's safe - to use alias because alias contains original table name - in this case(this part of code is used only for - 'show columns' & 'show statistics' commands). + Again we don't do this for SHOW COLUMNS/KEYS because + of backward compatibility. */ - table_name= thd->make_lex_string(&tmp_lex_string1, show_table_list->alias, - strlen(show_table_list->alias), FALSE); - if (!show_table_list->view) - db_name= thd->make_lex_string(&tmp_lex_string, show_table_list->db, - show_table_list->db_length, FALSE); - else - db_name= &show_table_list->view_db; - - - error= test(schema_table->process_table(thd, show_table_list, - table, res, db_name, - table_name)); - thd->temporary_tables= 0; - close_tables_for_reopen(thd, &show_table_list, - open_tables_state_backup->mdl_system_tables_svp); - DBUG_RETURN(error); + if (!is_show_fields_or_keys && result && thd->is_error() && + thd->stmt_da->sql_errno() == ER_NO_SUCH_TABLE) + { + /* + Hide error for a non-existing table. + For example, this error can occur when we use a where condition + with a db name and table, but the table does not exist. + */ + result= false; + thd->clear_error(); + } + else + { + result= schema_table->process_table(thd, table_list, + table, result, + orig_db_name, + orig_table_name); + } + + +end: + lex->unit.cleanup(); + + /* Restore original LEX value, statement's arena and THD arena values. */ + lex_end(thd->lex); + + if (i_s_arena.free_list) + i_s_arena.free_items(); + + /* + For safety reset list of open temporary tables before closing + all tables open within this Open_tables_state. + */ + thd->temporary_tables= NULL; + close_thread_tables(thd); + thd->mdl_context.rollback_to_savepoint(open_tables_state_backup->mdl_system_tables_svp); + + thd->lex= old_lex; + + thd->stmt_arena= old_arena; + thd->restore_active_arena(&i_s_arena, &backup_arena); + + DBUG_RETURN(result); } @@ -3485,10 +3582,8 @@ int get_all_tables(THD *thd, TABLE_LIST { LEX *lex= thd->lex; TABLE *table= tables->table; - SELECT_LEX *old_all_select_lex= lex->all_selects_list; SELECT_LEX *lsel= tables->schema_select_lex; ST_SCHEMA_TABLE *schema_table= tables->schema_table; - SELECT_LEX sel; LOOKUP_FIELD_VALUES lookup_field_vals; LEX_STRING *db_name, *table_name; bool with_i_schema; @@ -3496,11 +3591,8 @@ int get_all_tables(THD *thd, TABLE_LIST List db_names; List_iterator_fast it(db_names); Item *partial_cond= 0; - uint derived_tables= lex->derived_tables; int error= 1; Open_tables_backup open_tables_state_backup; - uint8 save_context_analysis_only= lex->context_analysis_only; - Query_tables_list query_tables_list_backup; #ifndef NO_EMBEDDED_ACCESS_CHECKS Security_context *sctx= thd->security_ctx; #endif @@ -3519,15 +3611,6 @@ int get_all_tables(THD *thd, TABLE_LIST */ can_deadlock= thd->mdl_context.has_locks(); - lex->context_analysis_only|= CONTEXT_ANALYSIS_ONLY_VIEW; - lex->reset_n_backup_query_tables_list(&query_tables_list_backup); - /* - Restore Query_tables_list::sql_command value, which was reset - above, as ST_SCHEMA_TABLE::process_table() functions often rely - that this value reflects which SHOW statement is executed. - */ - lex->sql_command= query_tables_list_backup.sql_command; - /* We should not introduce deadlocks even if we already have some tables open and locked, since we won't lock tables which we will @@ -3547,9 +3630,19 @@ int get_all_tables(THD *thd, TABLE_LIST */ if (lsel && lsel->table_list.first) { - error= fill_schema_show_cols_or_idxs(thd, tables, schema_table, - can_deadlock, - &open_tables_state_backup); + LEX_STRING db_name, table_name; + + db_name.str= lsel->table_list.first->db; + db_name.length= lsel->table_list.first->db_length; + + table_name.str= lsel->table_list.first->table_name; + table_name.length= lsel->table_list.first->table_name_length; + + error= fill_schema_table_by_open(thd, TRUE, + table, schema_table, + &db_name, &table_name, + &open_tables_state_backup, + can_deadlock); goto err; } @@ -3603,12 +3696,6 @@ int get_all_tables(THD *thd, TABLE_LIST it.rewind(); /* To get access to new elements in basis list */ while ((db_name= it++)) { - LEX_STRING orig_db_name; - - /* db_name can be changed in make_table_list() func */ - if (!thd->make_lex_string(&orig_db_name, db_name->str, - db_name->length, FALSE)) - goto err; #ifndef NO_EMBEDDED_ACCESS_CHECKS if (!(check_access(thd, SELECT_ACL, db_name->str, &thd->col_access, NULL, 0, 1) || @@ -3686,66 +3773,11 @@ int get_all_tables(THD *thd, TABLE_LIST continue; } - int res; - LEX_STRING tmp_lex_string; - /* - Set the parent lex of 'sel' because it is needed by - sel.init_query() which is called inside make_table_list. - */ - sel.parent_lex= lex; - if (make_table_list(thd, &sel, db_name, table_name)) - goto err; - TABLE_LIST *show_table_list= sel.table_list.first; - lex->all_selects_list= &sel; - lex->derived_tables= 0; - lex->sql_command= SQLCOM_SHOW_FIELDS; - show_table_list->i_s_requested_object= - schema_table->i_s_requested_object; - DEBUG_SYNC(thd, "before_open_in_get_all_tables"); - res= open_normal_and_derived_tables(thd, show_table_list, - (MYSQL_OPEN_IGNORE_FLUSH | - MYSQL_OPEN_FORCE_SHARED_HIGH_PRIO_MDL | - (can_deadlock ? MYSQL_OPEN_FAIL_ON_MDL_CONFLICT : 0))); - lex->sql_command= query_tables_list_backup.sql_command; - /* - XXX: show_table_list has a flag i_is_requested, - and when it's set, open_normal_and_derived_tables() - can return an error without setting an error message - in THD, which is a hack. This is why we have to - check for res, then for thd->is_error() only then - for thd->stmt_da->sql_errno(). - */ - if (res && thd->is_error() && - thd->stmt_da->sql_errno() == ER_NO_SUCH_TABLE) - { - /* - Hide error for not existing table. - This error can occur for example when we use - where condition with db name and table name and this - table does not exist. - */ - res= 0; - thd->clear_error(); - } - else - { - /* - We should use show_table_list->alias instead of - show_table_list->table_name because table_name - could be changed during opening of I_S tables. It's safe - to use alias because alias contains original table name - in this case. - */ - thd->make_lex_string(&tmp_lex_string, show_table_list->alias, - strlen(show_table_list->alias), FALSE); - res= schema_table->process_table(thd, show_table_list, table, - res, &orig_db_name, - &tmp_lex_string); - close_tables_for_reopen(thd, &show_table_list, - open_tables_state_backup.mdl_system_tables_svp); - } - DBUG_ASSERT(!lex->query_tables_own_last); - if (res) + if (fill_schema_table_by_open(thd, FALSE, + table, schema_table, + db_name, table_name, + &open_tables_state_backup, + can_deadlock)) goto err; } } @@ -3761,10 +3793,7 @@ int get_all_tables(THD *thd, TABLE_LIST error= 0; err: thd->restore_backup_open_tables_state(&open_tables_state_backup); - lex->restore_backup_query_tables_list(&query_tables_list_backup); - lex->derived_tables= derived_tables; - lex->all_selects_list= old_all_select_lex; - lex->context_analysis_only= save_context_analysis_only; + DBUG_RETURN(error); } --===============7248926848477809669== MIME-Version: 1.0 Content-Type: text/bzr-bundle; charset="us-ascii"; name="bzr/dmitry.shulga@stripped" Content-Transfer-Encoding: 7bit Content-Disposition: inline # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: dmitry.shulga@stripped\ # toicuupjg1fgi3pj # target_branch: file:///Users/shulga/projects/mysql/mysql-trunk/ # testament_sha1: f0d96fdcbc61a514508c903a6ad283cc93c147c7 # timestamp: 2011-05-21 02:11:37 +0700 # source_branch: file:///Users/shulga/projects/mysql/mysql-5.5/ # base_revision_id: mayank.prasad@stripped\ # 7sr3ixi04rnoqxwl # # Begin bundle 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 --===============7248926848477809669==--