sql_derived.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2002-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Derived tables
  15.   These were introduced by Sinisa <sinisa@mysql.com>
  16. */
  17. #include "mysql_priv.h"
  18. #include "sql_select.h"
  19. static int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *s,
  20.  TABLE_LIST *t);
  21. /*
  22.   Resolve derived tables in all queries
  23.   SYNOPSIS
  24.     mysql_handle_derived()
  25.     lex                 LEX for this thread
  26.   RETURN
  27.     0 ok
  28.     -1 Error
  29.     1 Error and error message given
  30. */
  31. int
  32. mysql_handle_derived(LEX *lex)
  33. {
  34.   if (lex->derived_tables)
  35.   {
  36.     for (SELECT_LEX *sl= lex->all_selects_list;
  37.  sl;
  38.  sl= sl->next_select_in_list())
  39.     {
  40.       for (TABLE_LIST *cursor= sl->get_table_list();
  41.    cursor;
  42.    cursor= cursor->next)
  43.       {
  44. int res;
  45. if (cursor->derived && (res=mysql_derived(lex->thd, lex,
  46.   cursor->derived,
  47.   cursor)))
  48. {
  49.   return res;
  50. }
  51.       }
  52.       if (lex->describe)
  53.       {
  54. /*
  55.   Force join->join_tmp creation, because we will use this JOIN
  56.   twice for EXPLAIN and we have to have unchanged join for EXPLAINing
  57. */
  58. sl->uncacheable|= UNCACHEABLE_EXPLAIN;
  59. sl->master_unit()->uncacheable|= UNCACHEABLE_EXPLAIN;
  60.       }
  61.     }
  62.   }
  63.   return 0;
  64. }
  65. /*
  66.   Resolve derived tables in all queries
  67.   SYNOPSIS
  68.     mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit, TABLE_LIST *t)
  69.     thd Thread handle
  70.     lex                 LEX for this thread
  71.     unit                node that contains all SELECT's for derived tables
  72.     t                   TABLE_LIST for the upper SELECT
  73.   IMPLEMENTATION
  74.     Derived table is resolved with temporary table. It is created based on the
  75.     queries defined. After temporary table is created, if this is not EXPLAIN,
  76.     then the entire unit / node is deleted. unit is deleted if UNION is used 
  77.     for derived table and node is deleted is it is a  simple SELECT.
  78.     After table creation, the above TABLE_LIST is updated with a new table.
  79.     This function is called before any command containing derived table
  80.     is executed.
  81.     Derived tables is stored in thd->derived_tables and freed in
  82.     close_thread_tables()
  83.   RETURN
  84.     0 ok
  85.     1 Error
  86.     -1 Error and error message given
  87. */  
  88. static int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit,
  89.  TABLE_LIST *org_table_list)
  90. {
  91.   SELECT_LEX *first_select= unit->first_select();
  92.   TABLE *table;
  93.   int res;
  94.   select_union *derived_result;
  95.   bool is_union= first_select->next_select() && 
  96.     first_select->next_select()->linkage == UNION_TYPE;
  97.   SELECT_LEX *save_current_select= lex->current_select;
  98.   DBUG_ENTER("mysql_derived");
  99.   if (!(derived_result= new select_union(0)))
  100.     DBUG_RETURN(1); // out of memory
  101.   // st_select_lex_unit::prepare correctly work for single select
  102.   if ((res= unit->prepare(thd, derived_result, 0, org_table_list->alias)))
  103.     goto exit;
  104.   derived_result->tmp_table_param.init();
  105.   derived_result->tmp_table_param.field_count= unit->types.elements;
  106.   /*
  107.     Temp table is created so that it hounours if UNION without ALL is to be 
  108.     processed
  109.     As 'distinct' parameter we always pass FALSE (0), because underlying
  110.     query will control distinct condition by itself. Correct test of
  111.     distinct underlying query will be is_union &&
  112.     !unit->union_distinct->next_select() (i.e. it is union and last distinct
  113.     SELECT is last SELECT of UNION).
  114.   */
  115.   if (!(table= create_tmp_table(thd, &derived_result->tmp_table_param,
  116. unit->types, (ORDER*) 0,
  117. FALSE, 1,
  118. (first_select->options | thd->options |
  119.  TMP_TABLE_ALL_COLUMNS),
  120. HA_POS_ERROR,
  121. org_table_list->alias)))
  122.   {
  123.     res= -1;
  124.     goto exit;
  125.   }
  126.   derived_result->set_table(table);
  127.   /*
  128.     if it is preparation PS only then we do not need real data and we
  129.     can skip execution (and parameters is not defined, too)
  130.   */
  131.   if (! thd->current_arena->is_stmt_prepare())
  132.   {
  133.     if (is_union)
  134.     {
  135.       // execute union without clean up
  136.       if (!(res= unit->prepare(thd, derived_result, SELECT_NO_UNLOCK, "")))
  137. res= unit->exec();
  138.     }
  139.     else
  140.     {
  141.       unit->offset_limit_cnt= first_select->offset_limit;
  142.       unit->select_limit_cnt= first_select->select_limit+
  143. first_select->offset_limit;
  144.       if (unit->select_limit_cnt < first_select->select_limit)
  145. unit->select_limit_cnt= HA_POS_ERROR;
  146.       if (unit->select_limit_cnt == HA_POS_ERROR)
  147. first_select->options&= ~OPTION_FOUND_ROWS;
  148.       lex->current_select= first_select;
  149.       res= mysql_select(thd, &first_select->ref_pointer_array, 
  150. (TABLE_LIST*) first_select->table_list.first,
  151. first_select->with_wild,
  152. first_select->item_list, first_select->where,
  153. (first_select->order_list.elements+
  154.  first_select->group_list.elements),
  155. (ORDER *) first_select->order_list.first,
  156. (ORDER *) first_select->group_list.first,
  157. first_select->having, (ORDER*) NULL,
  158. (first_select->options | thd->options |
  159.  SELECT_NO_UNLOCK),
  160. derived_result, unit, first_select);
  161.     }
  162.   }
  163.   if (!res)
  164.   {
  165.     /*
  166.       Here we entirely fix both TABLE_LIST and list of SELECT's as
  167.       there were no derived tables
  168.     */
  169.     if (derived_result->flush())
  170.       res= 1;
  171.     else
  172.     {
  173.       org_table_list->real_name= table->real_name;
  174.       org_table_list->table= table;
  175.       if (org_table_list->table_list)
  176.       {
  177. org_table_list->table_list->real_name= table->real_name;
  178. org_table_list->table_list->table= table;
  179.       }
  180.       table->derived_select_number= first_select->select_number;
  181.       table->tmp_table= TMP_TABLE;
  182. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  183.       table->grant.privilege= SELECT_ACL;
  184. #endif
  185.       org_table_list->db= (char *)"";
  186.       // Force read of table stats in the optimizer
  187.       table->file->info(HA_STATUS_VARIABLE);
  188.     }
  189.     if (!lex->describe)
  190.       unit->cleanup();
  191.     if (res)
  192.       free_tmp_table(thd, table);
  193.     else
  194.     {
  195.       /* Add new temporary table to list of open derived tables */
  196.       table->next= thd->derived_tables;
  197.       thd->derived_tables= table;
  198.     }
  199.   }
  200.   else
  201.   {
  202.     free_tmp_table(thd, table);
  203.     unit->cleanup();
  204.   }
  205. exit:
  206.   delete derived_result;
  207.   lex->current_select= save_current_select;
  208.   DBUG_RETURN(res);
  209. }