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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* Basic functions needed by many modules */
  14. #include "mysql_priv.h"
  15. #include "sql_select.h"
  16. #include <m_ctype.h>
  17. #include <my_dir.h>
  18. #include <hash.h>
  19. #include <nisam.h>
  20. #ifdef __WIN__
  21. #include <io.h>
  22. #endif
  23. TABLE *unused_tables; /* Used by mysql_test */
  24. HASH open_cache; /* Used by mysql_test */
  25. HASH assign_cache;
  26. static int open_unireg_entry(THD *thd,TABLE *entry,const char *db,
  27.      const char *name, const char *alias);
  28. static void free_cache_entry(TABLE *entry);
  29. static void mysql_rm_tmp_tables(void);
  30. extern "C" byte *table_cache_key(const byte *record,uint *length,
  31.  my_bool not_used __attribute__((unused)))
  32. {
  33.   TABLE *entry=(TABLE*) record;
  34.   *length=entry->key_length;
  35.   return (byte*) entry->table_cache_key;
  36. }
  37. bool table_cache_init(void)
  38. {
  39.   mysql_rm_tmp_tables();
  40.   return hash_init(&open_cache, &my_charset_bin, table_cache_size+16,
  41.    0, 0,table_cache_key,
  42.    (hash_free_key) free_cache_entry, 0) != 0;
  43. }
  44. void table_cache_free(void)
  45. {
  46.   DBUG_ENTER("table_cache_free");
  47.   close_cached_tables((THD*) 0,0,(TABLE_LIST*) 0);
  48.   if (!open_cache.records) // Safety first
  49.     hash_free(&open_cache);
  50.   DBUG_VOID_RETURN;
  51. }
  52. uint cached_tables(void)
  53. {
  54.   return open_cache.records;
  55. }
  56. #ifdef EXTRA_DEBUG
  57. static void check_unused(void)
  58. {
  59.   uint count=0,idx=0;
  60.   TABLE *cur_link,*start_link;
  61.   if ((start_link=cur_link=unused_tables))
  62.   {
  63.     do
  64.     {
  65.       if (cur_link != cur_link->next->prev || cur_link != cur_link->prev->next)
  66.       {
  67. DBUG_PRINT("error",("Unused_links aren't linked properly")); /* purecov: inspected */
  68. return; /* purecov: inspected */
  69.       }
  70.     } while (count++ < open_cache.records &&
  71.      (cur_link=cur_link->next) != start_link);
  72.     if (cur_link != start_link)
  73.     {
  74.       DBUG_PRINT("error",("Unused_links aren't connected")); /* purecov: inspected */
  75.     }
  76.   }
  77.   for (idx=0 ; idx < open_cache.records ; idx++)
  78.   {
  79.     TABLE *entry=(TABLE*) hash_element(&open_cache,idx);
  80.     if (!entry->in_use)
  81.       count--;
  82.   }
  83.   if (count != 0)
  84.   {
  85.     DBUG_PRINT("error",("Unused_links doesn't match open_cache: diff: %d", /* purecov: inspected */
  86. count)); /* purecov: inspected */
  87.   }
  88. }
  89. #else
  90. #define check_unused()
  91. #endif
  92. /*
  93.   Create a list for all open tables matching SQL expression
  94.   SYNOPSIS
  95.     list_open_tables()
  96.     thd Thread THD
  97.     wild SQL like expression
  98.   NOTES
  99.     One gets only a list of tables for which one has any kind of privilege.
  100.     db and table names are allocated in result struct, so one doesn't need
  101.     a lock on LOCK_open when traversing the return list.
  102.   RETURN VALUES
  103.     NULL Error (Probably OOM)
  104.     # Pointer to list of names of open tables.
  105. */
  106. OPEN_TABLE_LIST *list_open_tables(THD *thd, const char *wild)
  107. {
  108.   int result = 0;
  109.   OPEN_TABLE_LIST **start_list, *open_list;
  110.   TABLE_LIST table_list;
  111.   char name[NAME_LEN*2];
  112.   DBUG_ENTER("list_open_tables");
  113.   VOID(pthread_mutex_lock(&LOCK_open));
  114.   bzero((char*) &table_list,sizeof(table_list));
  115.   start_list= &open_list;
  116.   open_list=0;
  117.   for (uint idx=0 ; result == 0 && idx < open_cache.records; idx++)
  118.   {
  119.     OPEN_TABLE_LIST *table;
  120.     TABLE *entry=(TABLE*) hash_element(&open_cache,idx);
  121.     DBUG_ASSERT(entry->real_name);
  122.     if ((!entry->real_name)) // To be removed
  123.       continue; // Shouldn't happen
  124.     if (wild)
  125.     {
  126.       strxmov(name,entry->table_cache_key,".",entry->real_name,NullS);
  127.       if (wild_compare(name,wild,0))
  128. continue;
  129.     }
  130.     /* Check if user has SELECT privilege for any column in the table */
  131.     table_list.db= (char*) entry->table_cache_key;
  132.     table_list.real_name= entry->real_name;
  133.     table_list.grant.privilege=0;
  134.     if (check_table_access(thd,SELECT_ACL | EXTRA_ACL,&table_list,1))
  135.       continue;
  136.     /* need to check if we haven't already listed it */
  137.     for (table= open_list  ; table ; table=table->next)
  138.     {
  139.       if (!strcmp(table->table,entry->real_name) &&
  140.   !strcmp(table->db,entry->table_cache_key))
  141.       {
  142. if (entry->in_use)
  143.   table->in_use++;
  144. if (entry->locked_by_name)
  145.   table->locked++;
  146. break;
  147.       }
  148.     }
  149.     if (table)
  150.       continue;
  151.     if (!(*start_list = (OPEN_TABLE_LIST *)
  152.   sql_alloc(sizeof(**start_list)+entry->key_length)))
  153.     {
  154.       open_list=0; // Out of memory
  155.       break;
  156.     }
  157.     strmov((*start_list)->table=
  158.    strmov(((*start_list)->db= (char*) ((*start_list)+1)),
  159.   entry->table_cache_key)+1,
  160.    entry->real_name);
  161.     (*start_list)->in_use= entry->in_use ? 1 : 0;
  162.     (*start_list)->locked= entry->locked_by_name ? 1 : 0;
  163.     start_list= &(*start_list)->next;
  164.     *start_list=0;
  165.   }
  166.   VOID(pthread_mutex_unlock(&LOCK_open));
  167.   DBUG_RETURN(open_list);
  168. }
  169. /*****************************************************************************
  170.  *  Functions to free open table cache
  171.  ****************************************************************************/
  172. void intern_close_table(TABLE *table)
  173. { // Free all structures
  174.   free_io_cache(table);
  175.   if (table->file)
  176.     VOID(closefrm(table)); // close file
  177. }
  178. /*
  179.   Remove table from the open table cache
  180.   SYNOPSIS
  181.     free_cache_entry()
  182.     table Table to remove
  183.   NOTE
  184.     We need to have a lock on LOCK_open when calling this
  185. */
  186. static void free_cache_entry(TABLE *table)
  187. {
  188.   DBUG_ENTER("free_cache_entry");
  189.   safe_mutex_assert_owner(&LOCK_open);
  190.   intern_close_table(table);
  191.   if (!table->in_use)
  192.   {
  193.     table->next->prev=table->prev; /* remove from used chain */
  194.     table->prev->next=table->next;
  195.     if (table == unused_tables)
  196.     {
  197.       unused_tables=unused_tables->next;
  198.       if (table == unused_tables)
  199. unused_tables=0;
  200.     }
  201.     check_unused(); // consisty check
  202.   }
  203.   my_free((gptr) table,MYF(0));
  204.   DBUG_VOID_RETURN;
  205. }
  206. /* Free resources allocated by filesort() and read_record() */
  207. void free_io_cache(TABLE *table)
  208. {
  209.   DBUG_ENTER("free_io_cache");
  210.   if (table->sort.io_cache)
  211.   {
  212.     close_cached_file(table->sort.io_cache);
  213.     my_free((gptr) table->sort.io_cache,MYF(0));
  214.     table->sort.io_cache=0;
  215.   }
  216.   DBUG_VOID_RETURN;
  217. }
  218. /*
  219.   Close all tables which aren't in use by any thread
  220.   THD can be NULL, but then if_wait_for_refresh must be FALSE
  221.   and tables must be NULL.
  222. */
  223. bool close_cached_tables(THD *thd, bool if_wait_for_refresh,
  224.  TABLE_LIST *tables)
  225. {
  226.   bool result=0;
  227.   DBUG_ENTER("close_cached_tables");
  228.   DBUG_ASSERT(thd || (!if_wait_for_refresh && !tables));
  229.   VOID(pthread_mutex_lock(&LOCK_open));
  230.   if (!tables)
  231.   {
  232.     while (unused_tables)
  233.     {
  234. #ifdef EXTRA_DEBUG
  235.       if (hash_delete(&open_cache,(byte*) unused_tables))
  236. printf("Warning: Couldn't delete open table from hashn");
  237. #else
  238.       VOID(hash_delete(&open_cache,(byte*) unused_tables));
  239. #endif
  240.     }
  241.     refresh_version++; // Force close of open tables
  242.   }
  243.   else
  244.   {
  245.     bool found=0;
  246.     for (TABLE_LIST *table=tables ; table ; table=table->next)
  247.     {
  248.       if (remove_table_from_cache(thd, table->db, table->real_name,
  249.                                   RTFC_OWNED_BY_THD_FLAG))
  250. found=1;
  251.     }
  252.     if (!found)
  253.       if_wait_for_refresh=0; // Nothing to wait for
  254.   }
  255. #ifndef EMBEDDED_LIBRARY
  256.   if (!tables)
  257.     kill_delayed_threads();
  258. #endif
  259.   if (if_wait_for_refresh)
  260.   {
  261.     /*
  262.       If there is any table that has a lower refresh_version, wait until
  263.       this is closed (or this thread is killed) before returning
  264.     */
  265.     thd->mysys_var->current_mutex= &LOCK_open;
  266.     thd->mysys_var->current_cond= &COND_refresh;
  267.     thd->proc_info="Flushing tables";
  268.     close_old_data_files(thd,thd->open_tables,1,1);
  269.     mysql_ha_flush(thd, tables, MYSQL_HA_REOPEN_ON_USAGE | MYSQL_HA_FLUSH_ALL,
  270.                    TRUE);
  271.     bool found=1;
  272.     /* Wait until all threads has closed all the tables we had locked */
  273.     DBUG_PRINT("info",
  274.        ("Waiting for others threads to close their open tables"));
  275.     while (found && ! thd->killed)
  276.     {
  277.       found=0;
  278.       for (uint idx=0 ; idx < open_cache.records ; idx++)
  279.       {
  280. TABLE *table=(TABLE*) hash_element(&open_cache,idx);
  281. if ((table->version) < refresh_version && table->db_stat)
  282. {
  283.   found=1;
  284.   pthread_cond_wait(&COND_refresh,&LOCK_open);
  285.   break;
  286. }
  287.       }
  288.     }
  289.     /*
  290.       No other thread has the locked tables open; reopen them and get the
  291.       old locks. This should always succeed (unless some external process
  292.       has removed the tables)
  293.     */
  294.     thd->in_lock_tables=1;
  295.     result=reopen_tables(thd,1,1);
  296.     thd->in_lock_tables=0;
  297.     /* Set version for table */
  298.     for (TABLE *table=thd->open_tables; table ; table=table->next)
  299.       table->version=refresh_version;
  300.   }
  301.   VOID(pthread_mutex_unlock(&LOCK_open));
  302.   if (if_wait_for_refresh)
  303.   {
  304.     pthread_mutex_lock(&thd->mysys_var->mutex);
  305.     thd->mysys_var->current_mutex= 0;
  306.     thd->mysys_var->current_cond= 0;
  307.     thd->proc_info=0;
  308.     pthread_mutex_unlock(&thd->mysys_var->mutex);
  309.   }
  310.   DBUG_RETURN(result);
  311. }
  312. /*
  313.   Close all tables used by thread
  314.   SYNOPSIS
  315.     close_thread_tables()
  316.     thd Thread handler
  317.     lock_in_use Set to 1 (0 = default) if caller has a lock on
  318. LOCK_open
  319.     skip_derived Set to 1 (0 = default) if we should not free derived
  320. tables.
  321.   IMPLEMENTATION
  322.     Unlocks tables and frees derived tables.
  323.     Put all normal tables used by thread in free list.
  324. */
  325. void close_thread_tables(THD *thd, bool lock_in_use, bool skip_derived)
  326. {
  327.   bool found_old_table;
  328.   DBUG_ENTER("close_thread_tables");
  329.   if (thd->derived_tables && !skip_derived)
  330.   {
  331.     TABLE *table, *next;
  332.     /*
  333.       Close all derived tables generated from questions like
  334.       SELECT * from (select * from t1))
  335.     */
  336.     for (table= thd->derived_tables ; table ; table= next)
  337.     {
  338.       next= table->next;
  339.       free_tmp_table(thd, table);
  340.     }
  341.     thd->derived_tables= 0;
  342.   }
  343.   if (thd->locked_tables)
  344.   {
  345.     ha_commit_stmt(thd); // If select statement
  346.     DBUG_VOID_RETURN; // LOCK TABLES in use
  347.   }
  348.   if (thd->lock)
  349.   {
  350.     mysql_unlock_tables(thd, thd->lock);
  351.     thd->lock=0;
  352.   }
  353.   /* VOID(pthread_sigmask(SIG_SETMASK,&thd->block_signals,NULL)); */
  354.   if (!lock_in_use)
  355.     VOID(pthread_mutex_lock(&LOCK_open));
  356.   safe_mutex_assert_owner(&LOCK_open);
  357.   DBUG_PRINT("info", ("thd->open_tables=%p", thd->open_tables));
  358.  found_old_table= 0;
  359.   while (thd->open_tables)
  360.     found_old_table|=close_thread_table(thd, &thd->open_tables);
  361.   thd->some_tables_deleted=0;
  362.   /* Free tables to hold down open files */
  363.   while (open_cache.records > table_cache_size && unused_tables)
  364.     VOID(hash_delete(&open_cache,(byte*) unused_tables)); /* purecov: tested */
  365.   check_unused();
  366.   if (found_old_table)
  367.   {
  368.     /* Tell threads waiting for refresh that something has happened */
  369.     VOID(pthread_cond_broadcast(&COND_refresh));
  370.   }
  371.   if (!lock_in_use)
  372.     VOID(pthread_mutex_unlock(&LOCK_open));
  373.   /*  VOID(pthread_sigmask(SIG_SETMASK,&thd->signals,NULL)); */
  374.   DBUG_VOID_RETURN;
  375. }
  376. /* move one table to free list */
  377. bool close_thread_table(THD *thd, TABLE **table_ptr)
  378. {
  379.   DBUG_ENTER("close_thread_table");
  380.   bool found_old_table= 0;
  381.   TABLE *table= *table_ptr;
  382.   DBUG_ASSERT(table->key_read == 0);
  383.   *table_ptr=table->next;
  384.   if (table->version != refresh_version ||
  385.       thd->version != refresh_version || !table->db_stat)
  386.   {
  387.     VOID(hash_delete(&open_cache,(byte*) table));
  388.     found_old_table=1;
  389.   }
  390.   else
  391.   {
  392.     if (table->flush_version != flush_version)
  393.     {
  394.       table->flush_version=flush_version;
  395.       table->file->extra(HA_EXTRA_FLUSH);
  396.     }
  397.     else
  398.     {
  399.       // Free memory and reset for next loop
  400.       table->file->reset();
  401.     }
  402.     table->in_use=0;
  403.     if (unused_tables)
  404.     {
  405.       table->next=unused_tables; /* Link in last */
  406.       table->prev=unused_tables->prev;
  407.       unused_tables->prev=table;
  408.       table->prev->next=table;
  409.     }
  410.     else
  411.       unused_tables=table->next=table->prev=table;
  412.   }
  413.   DBUG_RETURN(found_old_table);
  414. }
  415. /* Close and delete temporary tables */
  416. void close_temporary(TABLE *table,bool delete_table)
  417. {
  418.   DBUG_ENTER("close_temporary");
  419.   char path[FN_REFLEN];
  420.   db_type table_type=table->db_type;
  421.   strmov(path,table->path);
  422.   free_io_cache(table);
  423.   closefrm(table);
  424.   my_free((char*) table,MYF(0));
  425.   if (delete_table)
  426.     rm_temporary_table(table_type, path);
  427.   DBUG_VOID_RETURN;
  428. }
  429. void close_temporary_tables(THD *thd)
  430. {
  431.   TABLE *table,*next;
  432.   char *query, *end;
  433.   uint query_buf_size; 
  434.   bool found_user_tables = 0;
  435.   if (!thd->temporary_tables)
  436.     return;
  437.   
  438.   LINT_INIT(end);
  439.   query_buf_size= 50;   // Enough for DROP ... TABLE IF EXISTS
  440.   for (table=thd->temporary_tables ; table ; table=table->next)
  441.     /*
  442.       We are going to add 4 ` around the db/table names, so 1 does not look
  443.       enough; indeed it is enough, because table->key_length is greater (by 8,
  444.       because of server_id and thread_id) than db||table.
  445.     */
  446.     query_buf_size+= table->key_length+1;
  447.   if ((query = alloc_root(thd->mem_root, query_buf_size)))
  448.     // Better add "if exists", in case a RESET MASTER has been done
  449.     end=strmov(query, "DROP /*!40005 TEMPORARY */ TABLE IF EXISTS ");
  450.   for (table=thd->temporary_tables ; table ; table=next)
  451.   {
  452.     if (query) // we might be out of memory, but this is not fatal
  453.     {
  454.       // skip temporary tables not created directly by the user
  455.       if (table->real_name[0] != '#')
  456. found_user_tables = 1;
  457.       /*
  458.         Here we assume table_cache_key always starts
  459.         with  terminated db name
  460.       */
  461.       end = strxmov(end,"`",table->table_cache_key,"`.`",
  462.                     table->real_name,"`,", NullS);
  463.     }
  464.     next=table->next;
  465.     close_temporary(table);
  466.   }
  467.   if (query && found_user_tables && mysql_bin_log.is_open())
  468.   {
  469.     /* The -1 is to remove last ',' */
  470.     thd->clear_error();
  471.     Query_log_event qinfo(thd, query, (ulong)(end-query)-1, 0, FALSE);
  472.     /*
  473.       Imagine the thread had created a temp table, then was doing a SELECT, and
  474.       the SELECT was killed. Then it's not clever to mark the statement above as
  475.       "killed", because it's not really a statement updating data, and there
  476.       are 99.99% chances it will succeed on slave.
  477.       If a real update (one updating a persistent table) was killed on the
  478.       master, then this real update will be logged with error_code=killed,
  479.       rightfully causing the slave to stop.
  480.     */
  481.     qinfo.error_code= 0;
  482.     mysql_bin_log.write(&qinfo);
  483.   }
  484.   thd->temporary_tables=0;
  485. }
  486. /*
  487.   Find first suitable table by alias in given list.
  488.   SYNOPSIS
  489.     find_table_in_list()
  490.     table - pointer to table list
  491.     db_name - data base name or 0 for any
  492.     table_name - table name or 0 for any
  493.   RETURN VALUES
  494.     NULL Table not found
  495.     # Pointer to found table.
  496. */
  497. TABLE_LIST * find_table_in_list(TABLE_LIST *table,
  498. const char *db_name, const char *table_name)
  499. {
  500.   for (; table; table= table->next)
  501.     if ((!db_name || !strcmp(table->db, db_name)) &&
  502. (!table_name || !my_strcasecmp(table_alias_charset,
  503.        table->alias, table_name)))
  504.       break;
  505.   return table;
  506. }
  507. /*
  508.   Find real table in given list.
  509.   SYNOPSIS
  510.     find_real_table_in_list()
  511.     table - pointer to table list
  512.     db_name - data base name
  513.     table_name - table name
  514.   RETURN VALUES
  515.     NULL Table not found
  516.     # Pointer to found table.
  517. */
  518. TABLE_LIST * find_real_table_in_list(TABLE_LIST *table,
  519.      const char *db_name,
  520.      const char *table_name)
  521. {
  522.   for (; table; table= table->next)
  523.     if (!strcmp(table->db, db_name) &&
  524. !strcmp(table->real_name, table_name))
  525.       break;
  526.   return table;
  527. }
  528. TABLE **find_temporary_table(THD *thd, const char *db, const char *table_name)
  529. {
  530.   char key[MAX_DBKEY_LENGTH];
  531.   uint key_length= (uint) (strmov(strmov(key,db)+1,table_name)-key)+1;
  532.   TABLE *table,**prev;
  533.   int4store(key+key_length,thd->server_id);
  534.   key_length += 4;
  535.   int4store(key+key_length,thd->variables.pseudo_thread_id);
  536.   key_length += 4;
  537.   prev= &thd->temporary_tables;
  538.   for (table=thd->temporary_tables ; table ; table=table->next)
  539.   {
  540.     if (table->key_length == key_length &&
  541. !memcmp(table->table_cache_key,key,key_length))
  542.       return prev;
  543.     prev= &table->next;
  544.   }
  545.   return 0; // Not a temporary table
  546. }
  547. bool close_temporary_table(THD *thd, const char *db, const char *table_name)
  548. {
  549.   TABLE *table,**prev;
  550.   if (!(prev=find_temporary_table(thd,db,table_name)))
  551.     return 1;
  552.   table= *prev;
  553.   *prev= table->next;
  554.   close_temporary(table);
  555.   if (thd->slave_thread)
  556.     --slave_open_temp_tables;
  557.   return 0;
  558. }
  559. /*
  560.   Used by ALTER TABLE when the table is a temporary one. It changes something
  561.   only if the ALTER contained a RENAME clause (otherwise, table_name is the old
  562.   name).
  563.   Prepares a table cache key, which is the concatenation of db, table_name and
  564.   thd->slave_proxy_id, separated by ''.
  565. */
  566. bool rename_temporary_table(THD* thd, TABLE *table, const char *db,
  567.     const char *table_name)
  568. {
  569.   char *key;
  570.   if (!(key=(char*) alloc_root(&table->mem_root,
  571.        (uint) strlen(db)+
  572.        (uint) strlen(table_name)+6+4)))
  573.     return 1; /* purecov: inspected */
  574.   table->key_length=(uint)
  575.     (strmov((table->real_name=strmov(table->table_cache_key=key,
  576.      db)+1),
  577.     table_name) - table->table_cache_key)+1;
  578.   int4store(key+table->key_length,thd->server_id);
  579.   table->key_length += 4;
  580.   int4store(key+table->key_length,thd->variables.pseudo_thread_id);
  581.   table->key_length += 4;
  582.   return 0;
  583. }
  584. /* move table first in unused links */
  585. static void relink_unused(TABLE *table)
  586. {
  587.   if (table != unused_tables)
  588.   {
  589.     table->prev->next=table->next; /* Remove from unused list */
  590.     table->next->prev=table->prev;
  591.     table->next=unused_tables; /* Link in unused tables */
  592.     table->prev=unused_tables->prev;
  593.     unused_tables->prev->next=table;
  594.     unused_tables->prev=table;
  595.     unused_tables=table;
  596.     check_unused();
  597.   }
  598. }
  599. /*
  600.   Remove all instances of table from the current open list
  601.   Free all locks on tables that are done with LOCK TABLES
  602.  */
  603. TABLE *unlink_open_table(THD *thd, TABLE *list, TABLE *find)
  604. {
  605.   char key[MAX_DBKEY_LENGTH];
  606.   uint key_length=find->key_length;
  607.   TABLE *start=list,**prev,*next;
  608.   prev= &start;
  609.   memcpy(key,find->table_cache_key,key_length);
  610.   for (; list ; list=next)
  611.   {
  612.     next=list->next;
  613.     if (list->key_length == key_length &&
  614. !memcmp(list->table_cache_key,key,key_length))
  615.     {
  616.       if (thd->locked_tables)
  617. mysql_lock_remove(thd, thd->locked_tables,list);
  618.       VOID(hash_delete(&open_cache,(byte*) list)); // Close table
  619.     }
  620.     else
  621.     {
  622.       *prev=list; // put in use list
  623.       prev= &list->next;
  624.     }
  625.   }
  626.   *prev=0;
  627.   // Notify any 'refresh' threads
  628.   pthread_cond_broadcast(&COND_refresh);
  629.   return start;
  630. }
  631. /*
  632.    When we call the following function we must have a lock on
  633.    LOCK_open ; This lock will be unlocked on return.
  634. */
  635. void wait_for_refresh(THD *thd)
  636. {
  637.   safe_mutex_assert_owner(&LOCK_open);
  638.   /* Wait until the current table is up to date */
  639.   const char *proc_info;
  640.   thd->mysys_var->current_mutex= &LOCK_open;
  641.   thd->mysys_var->current_cond= &COND_refresh;
  642.   proc_info=thd->proc_info;
  643.   thd->proc_info="Waiting for table";
  644.   if (!thd->killed)
  645.     (void) pthread_cond_wait(&COND_refresh,&LOCK_open);
  646.   pthread_mutex_unlock(&LOCK_open); // Must be unlocked first
  647.   pthread_mutex_lock(&thd->mysys_var->mutex);
  648.   thd->mysys_var->current_mutex= 0;
  649.   thd->mysys_var->current_cond= 0;
  650.   thd->proc_info= proc_info;
  651.   pthread_mutex_unlock(&thd->mysys_var->mutex);
  652. }
  653. TABLE *reopen_name_locked_table(THD* thd, TABLE_LIST* table_list)
  654. {
  655.   DBUG_ENTER("reopen_name_locked_table");
  656.   if (thd->killed)
  657.     DBUG_RETURN(0);
  658.   TABLE* table;
  659.   if (!(table = table_list->table))
  660.     DBUG_RETURN(0);
  661.   char* db = thd->db ? thd->db : table_list->db;
  662.   char* table_name = table_list->real_name;
  663.   char key[MAX_DBKEY_LENGTH];
  664.   uint key_length;
  665.   key_length=(uint) (strmov(strmov(key,db)+1,table_name)-key)+1;
  666.   pthread_mutex_lock(&LOCK_open);
  667.   if (open_unireg_entry(thd, table, db, table_name, table_name) ||
  668.       !(table->table_cache_key =memdup_root(&table->mem_root,(char*) key,
  669.     key_length)))
  670.   {
  671.     closefrm(table);
  672.     pthread_mutex_unlock(&LOCK_open);
  673.     DBUG_RETURN(0);
  674.   }
  675.   table->key_length=key_length;
  676.   table->version=0;
  677.   table->flush_version=0;
  678.   table->in_use = thd;
  679.   check_unused();
  680.   pthread_mutex_unlock(&LOCK_open);
  681.   table->next = thd->open_tables;
  682.   thd->open_tables = table;
  683.   table->tablenr=thd->current_tablenr++;
  684.   table->used_fields=0;
  685.   table->const_table=0;
  686.   table->outer_join= table->null_row= table->maybe_null= table->force_index= 0;
  687.   table->status=STATUS_NO_RECORD;
  688.   table->keys_in_use_for_query= table->keys_in_use;
  689.   table->used_keys= table->keys_for_keyread;
  690.   DBUG_RETURN(table);
  691. }
  692. /******************************************************************************
  693. ** open a table
  694. ** Uses a cache of open tables to find a table not in use.
  695. ** If refresh is a NULL pointer, then the is no version number checking and
  696. ** the table is not put in the thread-open-list
  697. ** If the return value is NULL and refresh is set then one must close
  698. ** all tables and retry the open
  699. ******************************************************************************/
  700. TABLE *open_table(THD *thd,const char *db,const char *table_name,
  701.   const char *alias,bool *refresh)
  702. {
  703.   reg1 TABLE *table;
  704.   char key[MAX_DBKEY_LENGTH];
  705.   uint key_length;
  706.   DBUG_ENTER("open_table");
  707.   /* find a unused table in the open table cache */
  708.   if (refresh)
  709.     *refresh=0;
  710.   if (thd->killed)
  711.     DBUG_RETURN(0);
  712.   key_length= (uint) (strmov(strmov(key,db)+1,table_name)-key)+1;
  713.   int4store(key + key_length, thd->server_id);
  714.   int4store(key + key_length + 4, thd->variables.pseudo_thread_id);
  715.   for (table=thd->temporary_tables; table ; table=table->next)
  716.   {
  717.     if (table->key_length == key_length + TMP_TABLE_KEY_EXTRA &&
  718. !memcmp(table->table_cache_key, key,
  719.                 key_length + TMP_TABLE_KEY_EXTRA))
  720.     {
  721.       if (table->query_id == thd->query_id)
  722.       {
  723. my_printf_error(ER_CANT_REOPEN_TABLE,
  724. ER(ER_CANT_REOPEN_TABLE),MYF(0),table->table_name);
  725. DBUG_RETURN(0);
  726.       }
  727.       table->query_id=thd->query_id;
  728.       table->clear_query_id=1;
  729.       thd->tmp_table_used= 1;
  730.       DBUG_PRINT("info",("Using temporary table"));
  731.       goto reset;
  732.     }
  733.   }
  734.   if (thd->locked_tables)
  735.   { // Using table locks
  736.     for (table=thd->open_tables; table ; table=table->next)
  737.     {
  738.       if (table->key_length == key_length &&
  739.   !memcmp(table->table_cache_key,key,key_length) &&
  740.   !my_strcasecmp(system_charset_info, table->table_name, alias) &&
  741.   table->query_id != thd->query_id)
  742.       {
  743. table->query_id=thd->query_id;
  744.         DBUG_PRINT("info",("Using locked table"));
  745. goto reset;
  746.       }
  747.     }
  748.     my_printf_error(ER_TABLE_NOT_LOCKED,ER(ER_TABLE_NOT_LOCKED),MYF(0),alias);
  749.     DBUG_RETURN(0);
  750.   }
  751.   VOID(pthread_mutex_lock(&LOCK_open));
  752.   if (!thd->open_tables)
  753.     thd->version=refresh_version;
  754.   else if (thd->version != refresh_version && refresh)
  755.   {
  756.     /* Someone did a refresh while thread was opening tables */
  757.     *refresh=1;
  758.     VOID(pthread_mutex_unlock(&LOCK_open));
  759.     DBUG_RETURN(0);
  760.   }
  761.   /* close handler tables which are marked for flush */
  762.   mysql_ha_flush(thd, (TABLE_LIST*) NULL, MYSQL_HA_REOPEN_ON_USAGE, TRUE);
  763.   for (table=(TABLE*) hash_search(&open_cache,(byte*) key,key_length) ;
  764.        table && table->in_use ;
  765.        table = (TABLE*) hash_next(&open_cache,(byte*) key,key_length))
  766.   {
  767.     if (table->version != refresh_version)
  768.     {
  769.       if (! refresh)
  770.       {
  771.         /* Ignore flush for now, but force close after usage. */
  772.         thd->version= table->version;
  773.         continue;
  774.       }
  775.       /*
  776.       ** There is a refresh in progress for this table
  777.       ** Wait until the table is freed or the thread is killed.
  778.       */
  779.       close_old_data_files(thd,thd->open_tables,0,0);
  780.       if (table->in_use != thd)
  781. wait_for_refresh(thd);
  782.       else
  783. VOID(pthread_mutex_unlock(&LOCK_open));
  784.       if (refresh)
  785. *refresh=1;
  786.       DBUG_RETURN(0);
  787.     }
  788.   }
  789.   if (table)
  790.   {
  791.     if (table == unused_tables)
  792.     { // First unused
  793.       unused_tables=unused_tables->next; // Remove from link
  794.       if (table == unused_tables)
  795. unused_tables=0;
  796.     }
  797.     table->prev->next=table->next; /* Remove from unused list */
  798.     table->next->prev=table->prev;
  799.   }
  800.   else
  801.   {
  802.     /* Free cache if too big */
  803.     while (open_cache.records > table_cache_size && unused_tables)
  804.       VOID(hash_delete(&open_cache,(byte*) unused_tables)); /* purecov: tested */
  805.     /* make a new table */
  806.     if (!(table=(TABLE*) my_malloc(sizeof(*table),MYF(MY_WME))))
  807.     {
  808.       VOID(pthread_mutex_unlock(&LOCK_open));
  809.       DBUG_RETURN(NULL);
  810.     }
  811.     if (open_unireg_entry(thd, table,db,table_name,alias) ||
  812. !(table->table_cache_key=memdup_root(&table->mem_root,(char*) key,
  813.      key_length)))
  814.     {
  815.       table->next=table->prev=table;
  816.       free_cache_entry(table);
  817.       VOID(pthread_mutex_unlock(&LOCK_open));
  818.       DBUG_RETURN(NULL);
  819.     }
  820.     table->key_length=key_length;
  821.     table->version=refresh_version;
  822.     table->flush_version=flush_version;
  823.     DBUG_PRINT("info", ("inserting table %p into the cache", table));
  824.     VOID(my_hash_insert(&open_cache,(byte*) table));
  825.   }
  826.   table->in_use=thd;
  827.   check_unused(); // Debugging call
  828.        
  829.   VOID(pthread_mutex_unlock(&LOCK_open));
  830.   if (refresh)
  831.   {
  832.     table->next=thd->open_tables; /* Link into simple list */
  833.     thd->open_tables=table;
  834.   }
  835.   table->reginfo.lock_type=TL_READ; /* Assume read */
  836.  reset:
  837.   /* Fix alias if table name changes */
  838.   if (strcmp(table->table_name,alias))
  839.   {
  840.     uint length=(uint) strlen(alias)+1;
  841.     table->table_name= (char*) my_realloc(table->table_name,length,
  842.   MYF(MY_WME));
  843.     memcpy(table->table_name,alias,length);
  844.     for (uint i=0 ; i < table->fields ; i++)
  845.       table->field[i]->table_name=table->table_name;
  846.   }
  847. #if MYSQL_VERSION_ID < 40100
  848.   /*
  849.     If per-connection "new" variable (represented by variables.new_mode)
  850.     is set then we should pretend that the length of TIMESTAMP field is 19.
  851.     The cheapest (from perfomance viewpoint) way to achieve that is to set
  852.     field_length of all Field_timestamp objects in a table after opening
  853.     it (to 19 if new_mode is true or to original field length otherwise).
  854.     We save value of new_mode variable in TABLE::timestamp_mode to
  855.     not perform this setup if new_mode value is the same between sequential
  856.     table opens.
  857.   */
  858.   my_bool new_mode= thd->variables.new_mode;
  859.   if (table->timestamp_mode != new_mode)
  860.   {
  861.     for (uint i=0 ; i < table->fields ; i++)
  862.     {
  863.       Field *field= table->field[i];
  864.       if (field->type() == FIELD_TYPE_TIMESTAMP)
  865.         field->field_length= new_mode ? 19 :
  866.                              ((Field_timestamp *)(field))->orig_field_length;
  867.     }
  868.     table->timestamp_mode= new_mode;
  869.   }
  870. #endif
  871.   /* These variables are also set in reopen_table() */
  872.   table->tablenr=thd->current_tablenr++;
  873.   table->used_fields=0;
  874.   table->const_table=0;
  875.   table->outer_join= table->null_row= table->maybe_null= table->force_index= 0;
  876.   table->status=STATUS_NO_RECORD;
  877.   table->keys_in_use_for_query= table->keys_in_use;
  878.   table->used_keys= table->keys_for_keyread;
  879.   if (table->timestamp_field)
  880.     table->timestamp_field_type= table->timestamp_field->get_auto_set_type();
  881.   DBUG_ASSERT(table->key_read == 0);
  882.   DBUG_ASSERT(table->insert_values == 0);
  883.   DBUG_RETURN(table);
  884. }
  885. TABLE *find_locked_table(THD *thd, const char *db,const char *table_name)
  886. {
  887.   char key[MAX_DBKEY_LENGTH];
  888.   uint key_length=(uint) (strmov(strmov(key,db)+1,table_name)-key)+1;
  889.   for (TABLE *table=thd->open_tables; table ; table=table->next)
  890.   {
  891.     if (table->key_length == key_length &&
  892. !memcmp(table->table_cache_key,key,key_length))
  893.       return table;
  894.   }
  895.   return(0);
  896. }
  897. /****************************************************************************
  898. ** Reopen an table because the definition has changed. The date file for the
  899. ** table is already closed.
  900. ** Returns 0 if ok.
  901. ** If table can't be reopened, the entry is unchanged.
  902. ****************************************************************************/
  903. bool reopen_table(TABLE *table,bool locked)
  904. {
  905.   TABLE tmp;
  906.   char *db=table->table_cache_key;
  907.   char *table_name=table->real_name;
  908.   bool error=1;
  909.   Field **field;
  910.   uint key,part;
  911.   DBUG_ENTER("reopen_table");
  912. #ifdef EXTRA_DEBUG
  913.   if (table->db_stat)
  914.     sql_print_error("Table %s had a open data handler in reopen_table",
  915.     table->table_name);
  916. #endif
  917.   if (!locked)
  918.     VOID(pthread_mutex_lock(&LOCK_open));
  919.   safe_mutex_assert_owner(&LOCK_open);
  920.   if (open_unireg_entry(current_thd,&tmp,db,table_name,table->table_name))
  921.     goto end;
  922.   free_io_cache(table);
  923.   if (!(tmp.table_cache_key= memdup_root(&tmp.mem_root,db,
  924.  table->key_length)))
  925.   {
  926.     closefrm(&tmp); // End of memory
  927.     goto end;
  928.   }
  929.   /* This list copies variables set by open_table */
  930.   tmp.tablenr= table->tablenr;
  931.   tmp.used_fields= table->used_fields;
  932.   tmp.const_table= table->const_table;
  933.   tmp.outer_join= table->outer_join;
  934.   tmp.null_row= table->null_row;
  935.   tmp.maybe_null= table->maybe_null;
  936.   tmp.status= table->status;
  937.   tmp.keys_in_use_for_query= tmp.keys_in_use;
  938.   tmp.used_keys=  tmp.keys_for_keyread;
  939.   tmp.force_index= tmp.force_index;
  940.   /* Get state */
  941.   tmp.key_length= table->key_length;
  942.   tmp.in_use=     table->in_use;
  943.   tmp.reginfo.lock_type=table->reginfo.lock_type;
  944.   tmp.version= refresh_version;
  945.   tmp.tmp_table= table->tmp_table;
  946.   tmp.grant= table->grant;
  947.   /* Replace table in open list */
  948.   tmp.next= table->next;
  949.   tmp.prev= table->prev;
  950.   if (table->file)
  951.     VOID(closefrm(table)); // close file, free everything
  952.   *table=tmp;
  953.   table->file->change_table_ptr(table);
  954.   DBUG_ASSERT(table->table_name);
  955.   for (field=table->field ; *field ; field++)
  956.   {
  957.     (*field)->table= (*field)->orig_table= table;
  958.     (*field)->table_name=table->table_name;
  959.   }
  960.   for (key=0 ; key < table->keys ; key++)
  961.     for (part=0 ; part < table->key_info[key].usable_key_parts ; part++)
  962.       table->key_info[key].key_part[part].field->table= table;
  963.   VOID(pthread_cond_broadcast(&COND_refresh));
  964.   error=0;
  965.  end:
  966.   if (!locked)
  967.     VOID(pthread_mutex_unlock(&LOCK_open));
  968.   DBUG_RETURN(error);
  969. }
  970. /*
  971.   Used with ALTER TABLE:
  972.   Close all instanses of table when LOCK TABLES is in used;
  973.   Close first all instances of table and then reopen them
  974.  */
  975. bool close_data_tables(THD *thd,const char *db, const char *table_name)
  976. {
  977.   TABLE *table;
  978.   for (table=thd->open_tables; table ; table=table->next)
  979.   {
  980.     if (!strcmp(table->real_name,table_name) &&
  981. !strcmp(table->table_cache_key,db))
  982.     {
  983.       mysql_lock_remove(thd, thd->locked_tables,table);
  984.       table->file->close();
  985.       table->db_stat=0;
  986.     }
  987.   }
  988.   return 0; // For the future
  989. }
  990. /*
  991.   Reopen all tables with closed data files
  992.   One should have lock on LOCK_open when calling this
  993. */
  994. bool reopen_tables(THD *thd,bool get_locks,bool in_refresh)
  995. {
  996.   DBUG_ENTER("reopen_tables");
  997.   safe_mutex_assert_owner(&LOCK_open);
  998.   if (!thd->open_tables)
  999.     DBUG_RETURN(0);
  1000.   TABLE *table,*next,**prev;
  1001.   TABLE **tables,**tables_ptr; // For locks
  1002.   bool error=0;
  1003.   if (get_locks)
  1004.   {
  1005.     /* The ptr is checked later */
  1006.     uint opens=0;
  1007.     for (table=thd->open_tables; table ; table=table->next) opens++;
  1008.     tables= (TABLE**) my_alloca(sizeof(TABLE*)*opens);
  1009.   }
  1010.   else
  1011.     tables= &thd->open_tables;
  1012.   tables_ptr =tables;
  1013.   prev= &thd->open_tables;
  1014.   for (table=thd->open_tables; table ; table=next)
  1015.   {
  1016.     uint db_stat=table->db_stat;
  1017.     next=table->next;
  1018.     if (!tables || (!db_stat && reopen_table(table,1)))
  1019.     {
  1020.       my_error(ER_CANT_REOPEN_TABLE,MYF(0),table->table_name);
  1021.       VOID(hash_delete(&open_cache,(byte*) table));
  1022.       error=1;
  1023.     }
  1024.     else
  1025.     {
  1026.       *prev= table;
  1027.       prev= &table->next;
  1028.       if (get_locks && !db_stat)
  1029. *tables_ptr++= table; // need new lock on this
  1030.       if (in_refresh)
  1031.       {
  1032. table->version=0;
  1033. table->locked_by_flush=0;
  1034.       }
  1035.     }
  1036.   }
  1037.   if (tables != tables_ptr) // Should we get back old locks
  1038.   {
  1039.     MYSQL_LOCK *lock;
  1040.     /* We should always get these locks */
  1041.     thd->some_tables_deleted=0;
  1042.     if ((lock= mysql_lock_tables(thd, tables, (uint) (tables_ptr-tables), 0)))
  1043.     {
  1044.       thd->locked_tables=mysql_lock_merge(thd->locked_tables,lock);
  1045.     }
  1046.     else
  1047.       error=1;
  1048.   }
  1049.   if (get_locks && tables)
  1050.   {
  1051.     my_afree((gptr) tables);
  1052.   }
  1053.   VOID(pthread_cond_broadcast(&COND_refresh)); // Signal to refresh
  1054.   *prev=0;
  1055.   DBUG_RETURN(error);
  1056. }
  1057. /*
  1058.   Close handlers for tables in list, but leave the TABLE structure
  1059.   intact so that we can re-open these quickly
  1060.   abort_locks is set if called from flush_tables.
  1061. */
  1062. void close_old_data_files(THD *thd, TABLE *table, bool abort_locks,
  1063.   bool send_refresh)
  1064. {
  1065.   DBUG_ENTER("close_old_data_files");
  1066.   bool found=send_refresh;
  1067.   for (; table ; table=table->next)
  1068.   {
  1069.     if (table->version != refresh_version)
  1070.     {
  1071.       found=1;
  1072.       if (!abort_locks) // If not from flush tables
  1073. table->version = refresh_version; // Let other threads use table
  1074.       if (table->db_stat)
  1075.       {
  1076. if (abort_locks)
  1077. {
  1078.   mysql_lock_abort(thd,table); // Close waiting threads
  1079.   mysql_lock_remove(thd, thd->locked_tables,table);
  1080.   table->locked_by_flush=1; // Will be reopened with locks
  1081. }
  1082. table->file->close();
  1083. table->db_stat=0;
  1084.       }
  1085.     }
  1086.   }
  1087.   if (found)
  1088.     VOID(pthread_cond_broadcast(&COND_refresh)); // Signal to refresh
  1089.   DBUG_VOID_RETURN;
  1090. }
  1091. /*
  1092.   Wait until all threads has closed the tables in the list
  1093.   We have also to wait if there is thread that has a lock on this table even
  1094.   if the table is closed
  1095. */
  1096. bool table_is_used(TABLE *table, bool wait_for_name_lock)
  1097. {
  1098.   do
  1099.   {
  1100.     char *key= table->table_cache_key;
  1101.     uint key_length=table->key_length;
  1102.     for (TABLE *search=(TABLE*) hash_search(&open_cache,
  1103.     (byte*) key,key_length) ;
  1104.  search ;
  1105.  search = (TABLE*) hash_next(&open_cache,(byte*) key,key_length))
  1106.     {
  1107.       if (search->locked_by_flush ||
  1108.   search->locked_by_name && wait_for_name_lock ||
  1109.   search->db_stat && search->version < refresh_version)
  1110. return 1; // Table is used
  1111.     }
  1112.   } while ((table=table->next));
  1113.   return 0;
  1114. }
  1115. /* Wait until all used tables are refreshed */
  1116. bool wait_for_tables(THD *thd)
  1117. {
  1118.   bool result;
  1119.   DBUG_ENTER("wait_for_tables");
  1120.   thd->proc_info="Waiting for tables";
  1121.   pthread_mutex_lock(&LOCK_open);
  1122.   while (!thd->killed)
  1123.   {
  1124.     thd->some_tables_deleted=0;
  1125.     close_old_data_files(thd,thd->open_tables,0,dropping_tables != 0);
  1126.     mysql_ha_flush(thd, (TABLE_LIST*) NULL, MYSQL_HA_REOPEN_ON_USAGE, TRUE);
  1127.     if (!table_is_used(thd->open_tables,1))
  1128.       break;
  1129.     (void) pthread_cond_wait(&COND_refresh,&LOCK_open);
  1130.   }
  1131.   if (thd->killed)
  1132.     result= 1; // aborted
  1133.   else
  1134.   {
  1135.     /* Now we can open all tables without any interference */
  1136.     thd->proc_info="Reopen tables";
  1137.     thd->version= refresh_version;
  1138.     result=reopen_tables(thd,0,0);
  1139.   }
  1140.   pthread_mutex_unlock(&LOCK_open);
  1141.   thd->proc_info=0;
  1142.   DBUG_RETURN(result);
  1143. }
  1144. /* drop tables from locked list */
  1145. bool drop_locked_tables(THD *thd,const char *db, const char *table_name)
  1146. {
  1147.   TABLE *table,*next,**prev;
  1148.   bool found=0;
  1149.   prev= &thd->open_tables;
  1150.   for (table=thd->open_tables; table ; table=next)
  1151.   {
  1152.     next=table->next;
  1153.     if (!strcmp(table->real_name,table_name) &&
  1154. !strcmp(table->table_cache_key,db))
  1155.     {
  1156.       mysql_lock_remove(thd, thd->locked_tables,table);
  1157.       VOID(hash_delete(&open_cache,(byte*) table));
  1158.       found=1;
  1159.     }
  1160.     else
  1161.     {
  1162.       *prev=table;
  1163.       prev= &table->next;
  1164.     }
  1165.   }
  1166.   *prev=0;
  1167.   if (found)
  1168.     VOID(pthread_cond_broadcast(&COND_refresh)); // Signal to refresh
  1169.   if (thd->locked_tables && thd->locked_tables->table_count == 0)
  1170.   {
  1171.     my_free((gptr) thd->locked_tables,MYF(0));
  1172.     thd->locked_tables=0;
  1173.   }
  1174.   return found;
  1175. }
  1176. /*
  1177.   If we have the table open, which only happens when a LOCK TABLE has been
  1178.   done on the table, change the lock type to a lock that will abort all
  1179.   other threads trying to get the lock.
  1180. */
  1181. void abort_locked_tables(THD *thd,const char *db, const char *table_name)
  1182. {
  1183.   TABLE *table;
  1184.   for (table= thd->open_tables; table ; table= table->next)
  1185.   {
  1186.     if (!strcmp(table->real_name,table_name) &&
  1187. !strcmp(table->table_cache_key,db))
  1188.     {
  1189.       mysql_lock_abort(thd,table);
  1190.       break;
  1191.     }
  1192.   }
  1193. }
  1194. /*
  1195.   Load a table definition from file and open unireg table
  1196.   SYNOPSIS
  1197.     open_unireg_entry()
  1198.     thd Thread handle
  1199.     entry Store open table definition here
  1200.     db Database name
  1201.     name Table name
  1202.     alias Alias name
  1203.   NOTES
  1204.    Extra argument for open is taken from thd->open_options
  1205.   RETURN
  1206.     0 ok
  1207.     # Error
  1208. */
  1209. static int open_unireg_entry(THD *thd, TABLE *entry, const char *db,
  1210.      const char *name, const char *alias)
  1211. {
  1212.   char path[FN_REFLEN];
  1213.   int error;
  1214.   uint discover_retry_count= 0;
  1215.   DBUG_ENTER("open_unireg_entry");
  1216.   strxmov(path, mysql_data_home, "/", db, "/", name, NullS);
  1217.   while (openfrm(path,alias,
  1218.        (uint) (HA_OPEN_KEYFILE | HA_OPEN_RNDFILE | HA_GET_INDEX |
  1219.        HA_TRY_READ_ONLY),
  1220.        READ_KEYINFO | COMPUTE_TYPES | EXTRA_RECORD,
  1221.       thd->open_options, entry))
  1222.   {
  1223.     if (!entry->crashed)
  1224.     {
  1225.       /*
  1226.        Frm file could not be found on disk
  1227.        Since it does not exist, no one can be using it
  1228.        LOCK_open has been locked to protect from someone else
  1229.        trying to discover the table at the same time.
  1230.       */
  1231.       if (discover_retry_count++ != 0)
  1232.         goto err;
  1233.       if (ha_create_table_from_engine(thd, db, name) > 0)
  1234.       {
  1235.         /* Give right error message */
  1236.         thd->clear_error();
  1237.         DBUG_PRINT("error", ("Dicovery of %s/%s failed", db, name));
  1238.         my_printf_error(ER_UNKNOWN_ERROR,
  1239.                         "Failed to open '%-.64s', error while "
  1240.                         "unpacking from engine",
  1241.                         MYF(0), name);
  1242.         goto err;
  1243.       }
  1244.       thd->clear_error(); // Clear error message
  1245.       continue;
  1246.     }
  1247.     // Code below is for repairing a crashed file
  1248.     TABLE_LIST table_list;
  1249.     bzero((char*) &table_list, sizeof(table_list)); // just for safe
  1250.     table_list.db=(char*) db;
  1251.     table_list.real_name=(char*) name;
  1252.     safe_mutex_assert_owner(&LOCK_open);
  1253.     if ((error=lock_table_name(thd,&table_list)))
  1254.     {
  1255.       if (error < 0)
  1256.       {
  1257. goto err;
  1258.       }
  1259.       if (wait_for_locked_table_names(thd,&table_list))
  1260.       {
  1261. unlock_table_name(thd,&table_list);
  1262. goto err;
  1263.       }
  1264.     }
  1265.     pthread_mutex_unlock(&LOCK_open);
  1266.     thd->clear_error(); // Clear error message
  1267.     error= 0;
  1268.     if (openfrm(path,alias,
  1269. (uint) (HA_OPEN_KEYFILE | HA_OPEN_RNDFILE | HA_GET_INDEX |
  1270.  HA_TRY_READ_ONLY),
  1271. READ_KEYINFO | COMPUTE_TYPES | EXTRA_RECORD,
  1272. ha_open_options | HA_OPEN_FOR_REPAIR,
  1273. entry) || ! entry->file ||
  1274. (entry->file->is_crashed() && entry->file->check_and_repair(thd)))
  1275.     {
  1276.       /* Give right error message */
  1277.       thd->clear_error();
  1278.       my_error(ER_NOT_KEYFILE, MYF(0), name, my_errno);
  1279.       sql_print_error("Couldn't repair table: %s.%s",db,name);
  1280.       if (entry->file)
  1281. closefrm(entry);
  1282.       error=1;
  1283.     }
  1284.     else
  1285.       thd->clear_error(); // Clear error message
  1286.     pthread_mutex_lock(&LOCK_open);
  1287.     unlock_table_name(thd,&table_list);
  1288.     if (error)
  1289.       goto err;
  1290.     break;
  1291.   }
  1292.   /*
  1293.     If we are here, there was no fatal error (but error may be still
  1294.     unitialized).
  1295.   */
  1296.   if (unlikely(entry->file->implicit_emptied))
  1297.   {
  1298.     entry->file->implicit_emptied= 0;
  1299.     if (mysql_bin_log.is_open())
  1300.     {
  1301.       char *query, *end;
  1302.       uint query_buf_size= 20 + 2*NAME_LEN + 1;
  1303.       if ((query= (char*)my_malloc(query_buf_size,MYF(MY_WME))))
  1304.       {
  1305.         end = strxmov(strmov(query, "DELETE FROM `"),
  1306.                       db,"`.`",name,"`", NullS);
  1307.         Query_log_event qinfo(thd, query, (ulong)(end-query), 0, FALSE);
  1308.         mysql_bin_log.write(&qinfo);
  1309.         my_free(query, MYF(0));
  1310.       }
  1311.       else
  1312.       {
  1313.         /*
  1314.           As replication is maybe going to be corrupted, we need to warn the
  1315.           DBA on top of warning the client (which will automatically be done
  1316.           because of MYF(MY_WME) in my_malloc() above).
  1317.         */
  1318.         sql_print_error("When opening HEAP table, could not allocate 
  1319. memory to write 'DELETE FROM `%s`.`%s`' to the binary log",db,name);
  1320.         if (entry->file)
  1321.           closefrm(entry);
  1322.         goto err;
  1323.       }
  1324.     }
  1325.   }
  1326.   DBUG_RETURN(0);
  1327. err:
  1328.   DBUG_RETURN(1);
  1329. }
  1330. /*
  1331.   Open all tables in list
  1332.   SYNOPSIS
  1333.     open_tables()
  1334.     thd - thread handler
  1335.     start - list of tables
  1336.     counter - number of opened tables will be return using this parameter
  1337.   RETURN
  1338.     0  - OK
  1339.     -1 - error
  1340. */
  1341. int open_tables(THD *thd, TABLE_LIST *start, uint *counter)
  1342. {
  1343.   TABLE_LIST *tables;
  1344.   bool refresh;
  1345.   int result=0;
  1346.   DBUG_ENTER("open_tables");
  1347.   thd->current_tablenr= 0;
  1348.  restart:
  1349.   *counter= 0;
  1350.   thd->proc_info="Opening tables";
  1351.   for (tables=start ; tables ; tables=tables->next)
  1352.   {
  1353.     /*
  1354.       Ignore placeholders for derived tables. After derived tables
  1355.       processing, link to created temporary table will be put here.
  1356.      */
  1357.     if (tables->derived)
  1358.       continue;
  1359.     (*counter)++;
  1360.     if (!tables->table &&
  1361. !(tables->table= open_table(thd,
  1362.     tables->db,
  1363.     tables->real_name,
  1364.     tables->alias, &refresh)))
  1365.     {
  1366.       if (refresh) // Refresh in progress
  1367.       {
  1368. /* close all 'old' tables used by this thread */
  1369. pthread_mutex_lock(&LOCK_open);
  1370. // if query_id is not reset, we will get an error
  1371. // re-opening a temp table
  1372. thd->version=refresh_version;
  1373. TABLE **prev_table= &thd->open_tables;
  1374. bool found=0;
  1375. for (TABLE_LIST *tmp=start ; tmp ; tmp=tmp->next)
  1376. {
  1377.   /* Close normal (not temporary) changed tables */
  1378.   if (tmp->table && ! tmp->table->tmp_table)
  1379.   {
  1380.     if (tmp->table->version != refresh_version ||
  1381. ! tmp->table->db_stat)
  1382.     {
  1383.       VOID(hash_delete(&open_cache,(byte*) tmp->table));
  1384.       tmp->table=0;
  1385.       found=1;
  1386.     }
  1387.     else
  1388.     {
  1389.       *prev_table= tmp->table; // Relink open list
  1390.       prev_table= &tmp->table->next;
  1391.     }
  1392.   }
  1393. }
  1394. *prev_table=0;
  1395. pthread_mutex_unlock(&LOCK_open);
  1396. if (found)
  1397.   VOID(pthread_cond_broadcast(&COND_refresh)); // Signal to refresh
  1398. goto restart;
  1399.       }
  1400.       result= -1; // Fatal error
  1401.       break;
  1402.     }
  1403.     if (tables->lock_type != TL_UNLOCK && ! thd->locked_tables)
  1404.       tables->table->reginfo.lock_type=tables->lock_type;
  1405.     tables->table->grant= tables->grant;
  1406.   }
  1407.   thd->proc_info=0;
  1408.   DBUG_RETURN(result);
  1409. }
  1410. /*
  1411.   Check that lock is ok for tables; Call start stmt if ok
  1412.   SYNOPSIS
  1413.     check_lock_and_start_stmt()
  1414.     thd Thread handle
  1415.     table_list Table to check
  1416.     lock_type Lock used for table
  1417.   RETURN VALUES
  1418.   0 ok
  1419.   1 error
  1420. */
  1421. static bool check_lock_and_start_stmt(THD *thd, TABLE *table,
  1422.       thr_lock_type lock_type)
  1423. {
  1424.   int error;
  1425.   DBUG_ENTER("check_lock_and_start_stmt");
  1426.   if ((int) lock_type >= (int) TL_WRITE_ALLOW_READ &&
  1427.       (int) table->reginfo.lock_type < (int) TL_WRITE_ALLOW_READ)
  1428.   {
  1429.     my_printf_error(ER_TABLE_NOT_LOCKED_FOR_WRITE,
  1430.     ER(ER_TABLE_NOT_LOCKED_FOR_WRITE),
  1431.     MYF(0),table->table_name);
  1432.     DBUG_RETURN(1);
  1433.   }
  1434.   if ((error=table->file->start_stmt(thd)))
  1435.   {
  1436.     table->file->print_error(error,MYF(0));
  1437.     DBUG_RETURN(1);
  1438.   }
  1439.   DBUG_RETURN(0);
  1440. }
  1441. /*
  1442.   Open and lock one table
  1443.   SYNOPSIS
  1444.     open_ltable()
  1445.     thd Thread handler
  1446.     table_list Table to open is first table in this list
  1447.     lock_type Lock to use for open
  1448.   RETURN VALUES
  1449.     table Opened table
  1450.     0 Error
  1451.   
  1452.     If ok, the following are also set:
  1453.       table_list->lock_type  lock_type
  1454.       table_list->table table
  1455. */
  1456. TABLE *open_ltable(THD *thd, TABLE_LIST *table_list, thr_lock_type lock_type)
  1457. {
  1458.   TABLE *table;
  1459.   bool refresh;
  1460.   DBUG_ENTER("open_ltable");
  1461.   thd->proc_info="Opening table";
  1462.   thd->current_tablenr= 0;
  1463.   while (!(table=open_table(thd,table_list->db,
  1464.     table_list->real_name,table_list->alias,
  1465.     &refresh)) && refresh) ;
  1466.   if (table)
  1467.   {
  1468. #if defined( __WIN__) || defined(OS2)
  1469.     /* Win32 can't drop a file that is open */
  1470.     if (lock_type == TL_WRITE_ALLOW_READ)
  1471.     {
  1472.       lock_type= TL_WRITE;
  1473.     }
  1474. #endif /* __WIN__ || OS2 */
  1475.     table_list->lock_type= lock_type;
  1476.     table_list->table=    table;
  1477.     table->grant= table_list->grant;
  1478.     if (thd->locked_tables)
  1479.     {
  1480.       if (check_lock_and_start_stmt(thd, table, lock_type))
  1481. table= 0;
  1482.     }
  1483.     else
  1484.     {
  1485.       DBUG_ASSERT(thd->lock == 0); // You must lock everything at once
  1486.       if ((table->reginfo.lock_type= lock_type) != TL_UNLOCK)
  1487. if (! (thd->lock= mysql_lock_tables(thd, &table_list->table, 1, 0)))
  1488.   table= 0;
  1489.     }
  1490.   }
  1491.   thd->proc_info=0;
  1492.   DBUG_RETURN(table);
  1493. }
  1494. /*
  1495.   Open all tables in list and locks them for read without derived
  1496.   tables processing.
  1497.   SYNOPSIS
  1498.     simple_open_n_lock_tables()
  1499.     thd - thread handler
  1500.     tables - list of tables for open&locking
  1501.   RETURN
  1502.     0  - ok
  1503.     -1 - error
  1504.   NOTE
  1505.     The lock will automaticly be freed by close_thread_tables()
  1506. */
  1507. int simple_open_n_lock_tables(THD *thd, TABLE_LIST *tables)
  1508. {
  1509.   DBUG_ENTER("simple_open_n_lock_tables");
  1510.   uint counter;
  1511.   if (open_tables(thd, tables, &counter) || lock_tables(thd, tables, counter))
  1512.     DBUG_RETURN(-1); /* purecov: inspected */
  1513.   DBUG_RETURN(0);
  1514. }
  1515. /*
  1516.   Open all tables in list, locks them and process derived tables
  1517.   tables processing.
  1518.   SYNOPSIS
  1519.     open_and_lock_tables()
  1520.     thd - thread handler
  1521.     tables - list of tables for open&locking
  1522.   RETURN
  1523.     0  - ok
  1524.     -1 - error
  1525.   NOTE
  1526.     The lock will automaticly be freed by close_thread_tables()
  1527. */
  1528. int open_and_lock_tables(THD *thd, TABLE_LIST *tables)
  1529. {
  1530.   DBUG_ENTER("open_and_lock_tables");
  1531.   uint counter;
  1532.   if (open_tables(thd, tables, &counter) || lock_tables(thd, tables, counter))
  1533.     DBUG_RETURN(-1); /* purecov: inspected */
  1534.   relink_tables_for_derived(thd);
  1535.   DBUG_RETURN(mysql_handle_derived(thd->lex));
  1536. }
  1537. /*
  1538.   Open all tables in list and process derived tables
  1539.   SYNOPSIS
  1540.     open_normal_and_derived_tables
  1541.     thd - thread handler
  1542.     tables - list of tables for open
  1543.   RETURN
  1544.     FALSE - ok
  1545.     TRUE  - error
  1546.   NOTE 
  1547.     This is to be used on prepare stage when you don't read any
  1548.     data from the tables.
  1549. */
  1550. int open_normal_and_derived_tables(THD *thd, TABLE_LIST *tables)
  1551. {
  1552.   uint counter;
  1553.   DBUG_ENTER("open_normal_and_derived_tables");
  1554.   if (open_tables(thd, tables, &counter))
  1555.     DBUG_RETURN(-1); /* purecov: inspected */
  1556.   relink_tables_for_derived(thd);
  1557.   DBUG_RETURN(mysql_handle_derived(thd->lex));
  1558. }
  1559. /*
  1560.   Let us propagate pointers to open tables from global table list
  1561.   to table lists in particular selects if needed.
  1562. */
  1563. void relink_tables_for_derived(THD *thd)
  1564. {
  1565.   if (thd->lex->all_selects_list->next_select_in_list() ||
  1566.       thd->lex->time_zone_tables_used)
  1567.   {
  1568.     for (SELECT_LEX *sl= thd->lex->all_selects_list;
  1569.  sl;
  1570.  sl= sl->next_select_in_list())
  1571.       for (TABLE_LIST *cursor= (TABLE_LIST *) sl->table_list.first;
  1572.            cursor;
  1573.            cursor=cursor->next)
  1574.         if (cursor->table_list)
  1575.           cursor->table= cursor->table_list->table;
  1576.   }
  1577. }
  1578. /*
  1579.   Lock all tables in list
  1580.   SYNOPSIS
  1581.     lock_tables()
  1582.     thd Thread handler
  1583.     tables Tables to lock
  1584.     count umber of opened tables
  1585.   NOTES
  1586.     You can't call lock_tables twice, as this would break the dead-lock-free
  1587.     handling thr_lock gives us.  You most always get all needed locks at
  1588.     once.
  1589.   RETURN VALUES
  1590.    0 ok
  1591.    -1 Error
  1592. */
  1593. int lock_tables(THD *thd, TABLE_LIST *tables, uint count)
  1594. {
  1595.   TABLE_LIST *table;
  1596.   if (!tables)
  1597.     return 0;
  1598.   if (!thd->locked_tables)
  1599.   {
  1600.     DBUG_ASSERT(thd->lock == 0); // You must lock everything at once
  1601.     TABLE **start,**ptr;
  1602.     if (!(ptr=start=(TABLE**) sql_alloc(sizeof(TABLE*)*count)))
  1603.       return -1;
  1604.     for (table = tables ; table ; table=table->next)
  1605.     {
  1606.       if (!table->derived)
  1607. *(ptr++)= table->table;
  1608.     }
  1609.     if (! (thd->lock= mysql_lock_tables(thd, start, (uint) (ptr - start), 0)))
  1610.       return -1; /* purecov: inspected */
  1611.   }
  1612.   else
  1613.   {
  1614.     for (table = tables ; table ; table=table->next)
  1615.     {
  1616.       if (!table->derived && 
  1617.   check_lock_and_start_stmt(thd, table->table, table->lock_type))
  1618.       {
  1619. ha_rollback_stmt(thd);
  1620. return -1;
  1621.       }
  1622.     }
  1623.   }
  1624.   return 0;
  1625. }
  1626. /*
  1627.   Open a single table without table caching and don't set it in open_list
  1628.   Used by alter_table to open a temporary table and when creating
  1629.   a temporary table with CREATE TEMPORARY ...
  1630. */
  1631. TABLE *open_temporary_table(THD *thd, const char *path, const char *db,
  1632.     const char *table_name, bool link_in_list)
  1633. {
  1634.   TABLE *tmp_table;
  1635.   DBUG_ENTER("open_temporary_table");
  1636.   /*
  1637.     The extra size in my_malloc() is for table_cache_key
  1638.     4 bytes for master thread id if we are in the slave
  1639.     1 byte to terminate db
  1640.     1 byte to terminate table_name
  1641.     total of 6 extra bytes in my_malloc in addition to table/db stuff
  1642.   */
  1643.   if (!(tmp_table=(TABLE*) my_malloc(sizeof(*tmp_table)+(uint) strlen(db)+
  1644.      (uint) strlen(table_name)+6+4,
  1645.      MYF(MY_WME))))
  1646.     DBUG_RETURN(0); /* purecov: inspected */
  1647.   if (openfrm(path, table_name,
  1648.       (uint) (HA_OPEN_KEYFILE | HA_OPEN_RNDFILE | HA_GET_INDEX),
  1649.       READ_KEYINFO | COMPUTE_TYPES | EXTRA_RECORD,
  1650.       ha_open_options,
  1651.       tmp_table))
  1652.   {
  1653.     my_free((char*) tmp_table,MYF(0));
  1654.     DBUG_RETURN(0);
  1655.   }
  1656.   tmp_table->reginfo.lock_type=TL_WRITE;  // Simulate locked
  1657.   tmp_table->in_use= thd;
  1658.   tmp_table->tmp_table = (tmp_table->file->has_transactions() ? 
  1659.   TRANSACTIONAL_TMP_TABLE : TMP_TABLE);
  1660.   tmp_table->table_cache_key=(char*) (tmp_table+1);
  1661.   tmp_table->key_length= (uint) (strmov((tmp_table->real_name=
  1662.  strmov(tmp_table->table_cache_key,db)
  1663.  +1), table_name)
  1664.  - tmp_table->table_cache_key)+1;
  1665.   int4store(tmp_table->table_cache_key + tmp_table->key_length,
  1666.     thd->server_id);
  1667.   tmp_table->key_length += 4;
  1668.   int4store(tmp_table->table_cache_key + tmp_table->key_length,
  1669.     thd->variables.pseudo_thread_id);
  1670.   tmp_table->key_length += 4;
  1671.   if (link_in_list)
  1672.   {
  1673.     tmp_table->next=thd->temporary_tables;
  1674.     thd->temporary_tables=tmp_table;
  1675.     if (thd->slave_thread)
  1676.       slave_open_temp_tables++;
  1677.   }
  1678.   DBUG_RETURN(tmp_table);
  1679. }
  1680. bool rm_temporary_table(enum db_type base, char *path)
  1681. {
  1682.   bool error=0;
  1683.   DBUG_ENTER("rm_temporary_table");
  1684.   fn_format(path, path,"",reg_ext,4);
  1685.   unpack_filename(path,path);
  1686.   if (my_delete(path,MYF(0)))
  1687.     error=1; /* purecov: inspected */
  1688.   *fn_ext(path)=''; // remove extension
  1689.   handler *file=get_new_handler((TABLE*) 0, base);
  1690.   if (file && file->delete_table(path))
  1691.   {
  1692.     error=1;
  1693.     sql_print_warning("Could not remove tmp table: '%s', error: %d",
  1694.                       path, my_errno);
  1695.   }
  1696.   delete file;
  1697.   DBUG_RETURN(error);
  1698. }
  1699. /*****************************************************************************
  1700. ** find field in list or tables. if field is unqualifed and unique,
  1701. ** return unique field
  1702. ******************************************************************************/
  1703. #define WRONG_GRANT (Field*) -1
  1704. Field *find_field_in_table(THD *thd,TABLE *table,const char *name,uint length,
  1705.                            bool check_grants, bool allow_rowid, 
  1706.                            uint *cached_field_index_ptr)
  1707. {
  1708.   Field **field_ptr, *field;
  1709.   uint cached_field_index= *cached_field_index_ptr;
  1710.   /* We assume here that table->field < NO_CACHED_FIELD_INDEX = UINT_MAX */
  1711.   if (cached_field_index < table->fields &&
  1712.       !my_strcasecmp(system_charset_info, 
  1713.                      table->field[cached_field_index]->field_name, name))
  1714.     field_ptr= table->field + cached_field_index;
  1715.   else if (table->name_hash.records)
  1716.     field_ptr= (Field**)hash_search(&table->name_hash,(byte*) name,
  1717.                                     length);
  1718.   else
  1719.   {
  1720.     if (!(field_ptr= table->field))
  1721.       return (Field *)0;
  1722.     for (; *field_ptr; ++field_ptr)
  1723.       if (!my_strcasecmp(system_charset_info, (*field_ptr)->field_name, name))
  1724.         break;
  1725.   }
  1726.   if (field_ptr && *field_ptr)
  1727.   {
  1728.     *cached_field_index_ptr= field_ptr - table->field;
  1729.     field= *field_ptr;
  1730.   }
  1731.   else
  1732.   {
  1733.     if (!allow_rowid ||
  1734.         my_strcasecmp(system_charset_info, name, "_rowid") ||
  1735.         !(field=table->rowid_field))
  1736.       return (Field*) 0;
  1737.   }
  1738.   if (thd->set_query_id)
  1739.   {
  1740.     if (field->query_id != thd->query_id)
  1741.     {
  1742.       field->query_id=thd->query_id;
  1743.       table->used_fields++;
  1744.       table->used_keys.intersect(field->part_of_key);
  1745.     }
  1746.     else
  1747.       thd->dupp_field=field;
  1748.   }
  1749. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  1750.   if (check_grants && check_grant_column(thd,table,name,length))
  1751.     return WRONG_GRANT;
  1752. #endif
  1753.   return field;
  1754. }
  1755. /*
  1756.   Find field in table list.
  1757.   SYNOPSIS
  1758.     find_field_in_tables()
  1759.     thd Pointer to current thread structure
  1760.     item Field item that should be found
  1761.     tables Tables for scanning
  1762.     where Table where field found will be returned via
  1763. this parameter
  1764.     report_error If FALSE then do not report error if item not found
  1765. and return not_found_field
  1766.   RETURN VALUES
  1767.     0 Field is not found or field is not unique- error
  1768. message is reported
  1769.     not_found_field Function was called with report_error == FALSE and
  1770. field was not found. no error message reported.
  1771.     found field
  1772. */
  1773. // Special Field pointer for find_field_in_tables returning
  1774. const Field *not_found_field= (Field*) 0x1;
  1775. Field *
  1776. find_field_in_tables(THD *thd, Item_ident *item, TABLE_LIST *tables,
  1777.      TABLE_LIST **where, bool report_error)
  1778. {
  1779.   Field *found=0;
  1780.   const char *db=item->db_name;
  1781.   const char *table_name=item->table_name;
  1782.   const char *name=item->field_name;
  1783.   uint length=(uint) strlen(name);
  1784.   char name_buff[NAME_LEN+1];
  1785.   bool allow_rowid;
  1786.   if (item->cached_table)
  1787.   {
  1788.     /*
  1789.       This shortcut is used by prepared statements. We assuming that 
  1790.       TABLE_LIST *tables is not changed during query execution (which 
  1791.       is true for all queries except RENAME but luckily RENAME doesn't 
  1792.       use fields...) so we can rely on reusing pointer to its member.
  1793.       With this optimisation we also miss case when addition of one more
  1794.       field makes some prepared query ambiguous and so erronous, but we 
  1795.       accept this trade off.
  1796.     */
  1797.     found= find_field_in_table(thd, item->cached_table->table, name, length,
  1798.                                test(item->cached_table->
  1799.     table->grant.want_privilege),
  1800.                                1, &(item->cached_field_index));
  1801.     if (found)
  1802.     {
  1803.       (*where)= tables;
  1804.       if (found == WRONG_GRANT)
  1805.         return (Field*) 0;
  1806.       return found;
  1807.     }
  1808.   }
  1809.   if (db && lower_case_table_names)
  1810.   {
  1811.     /*
  1812.       convert database to lower case for comparision.
  1813.       We can't do this in Item_field as this would change the
  1814.       'name' of the item which may be used in the select list
  1815.     */
  1816.     strmake(name_buff, db, sizeof(name_buff)-1);
  1817.     my_casedn_str(files_charset_info, name_buff);
  1818.     db= name_buff;
  1819.   }
  1820.   if (table_name && table_name[0])
  1821.   { /* Qualified field */
  1822.     bool found_table=0;
  1823.     for (; tables ; tables=tables->next)
  1824.     {
  1825.       if (!my_strcasecmp(table_alias_charset, tables->alias, table_name) &&
  1826.   (!db || !tables->db ||  !tables->db[0] || !strcmp(db,tables->db)))
  1827.       {
  1828. found_table=1;
  1829. Field *find=find_field_in_table(thd,tables->table,name,length,
  1830. test(tables->table->grant.
  1831.      want_privilege),
  1832. 1, &(item->cached_field_index));
  1833. if (find)
  1834. {
  1835.   (*where)= item->cached_table= tables;
  1836.   if (!tables->cacheable_table)
  1837.     item->cached_table= 0;
  1838.   if (find == WRONG_GRANT)
  1839.     return (Field*) 0;
  1840.   if (db || !thd->where)
  1841.     return find;
  1842.   if (found)
  1843.   {
  1844.     my_printf_error(ER_NON_UNIQ_ERROR,ER(ER_NON_UNIQ_ERROR),MYF(0),
  1845.     item->full_name(),thd->where);
  1846.     return (Field*) 0;
  1847.   }
  1848.   found=find;
  1849. }
  1850.       }
  1851.     }
  1852.     if (found)
  1853.       return found;
  1854.     if (!found_table && report_error)
  1855.     {
  1856.       char buff[NAME_LEN*2+1];
  1857.       if (db && db[0])
  1858.       {
  1859. strxnmov(buff,sizeof(buff)-1,db,".",table_name,NullS);
  1860. table_name=buff;
  1861.       }
  1862.       my_printf_error(ER_UNKNOWN_TABLE, ER(ER_UNKNOWN_TABLE), MYF(0),
  1863.                       table_name, thd->where);
  1864.     }
  1865.     else
  1866.       if (report_error)
  1867. my_printf_error(ER_BAD_FIELD_ERROR,ER(ER_BAD_FIELD_ERROR),MYF(0),
  1868. item->full_name(),thd->where);
  1869.       else
  1870. return (Field*) not_found_field;
  1871.     return (Field*) 0;
  1872.   }
  1873.   allow_rowid= tables && !tables->next;         // Only one table
  1874.   for (; tables ; tables=tables->next)
  1875.   {
  1876.     if (!tables->table)
  1877.     {
  1878.       if (report_error)
  1879. my_printf_error(ER_BAD_FIELD_ERROR,ER(ER_BAD_FIELD_ERROR),MYF(0),
  1880. item->full_name(),thd->where);
  1881.       return (Field*) not_found_field;
  1882.     }
  1883.     Field *field=find_field_in_table(thd,tables->table,name,length,
  1884.      test(tables->table->grant.want_privilege),
  1885.      allow_rowid, &(item->cached_field_index));
  1886.     if (field)
  1887.     {
  1888.       if (field == WRONG_GRANT)
  1889. return (Field*) 0;
  1890.       (*where)= item->cached_table= tables;
  1891.       if (!tables->cacheable_table)
  1892. item->cached_table= 0;
  1893.       if (found)
  1894.       {
  1895. if (!thd->where) // Returns first found
  1896.   break;
  1897. my_printf_error(ER_NON_UNIQ_ERROR,ER(ER_NON_UNIQ_ERROR),MYF(0),
  1898. name,thd->where);
  1899. return (Field*) 0;
  1900.       }
  1901.       found= field;
  1902.     }
  1903.   }
  1904.   if (found)
  1905.     return found;
  1906.   if (report_error)
  1907.     my_printf_error(ER_BAD_FIELD_ERROR, ER(ER_BAD_FIELD_ERROR),
  1908.     MYF(0), item->full_name(), thd->where);
  1909.   else
  1910.     return (Field*) not_found_field;
  1911.   return (Field*) 0;
  1912. }
  1913. /*
  1914.   Find Item in list of items (find_field_in_tables analog)
  1915.   TODO
  1916.     is it better return only counter?
  1917.   SYNOPSIS
  1918.     find_item_in_list()
  1919.     find Item to find
  1920.     items List of items
  1921.     counter To return number of found item
  1922.     report_error
  1923.       REPORT_ALL_ERRORS report errors, return 0 if error
  1924.       REPORT_EXCEPT_NOT_FOUND Do not report 'not found' error and
  1925. return not_found_item, report other errors,
  1926. return 0
  1927.       IGNORE_ERRORS Do not report errors, return 0 if error
  1928.     unaliased                   Set to true if item is field which was found
  1929.                                 by original field name and not by its alias
  1930.                                 in item list. Set to false otherwise.
  1931.   RETURN VALUES
  1932.     0 Item is not found or item is not unique,
  1933. error message is reported
  1934.     not_found_item Function was called with
  1935. report_error == REPORT_EXCEPT_NOT_FOUND and
  1936. item was not found. No error message was reported
  1937.                         found field
  1938. */
  1939. // Special Item pointer for find_item_in_list returning
  1940. const Item **not_found_item= (const Item**) 0x1;
  1941. Item **
  1942. find_item_in_list(Item *find, List<Item> &items, uint *counter,
  1943.                   find_item_error_report_type report_error, bool *unaliased)
  1944. {
  1945.   List_iterator<Item> li(items);
  1946.   Item **found=0, **found_unaliased= 0, *item;
  1947.   const char *db_name=0;
  1948.   const char *field_name=0;
  1949.   const char *table_name=0;
  1950.   bool found_unaliased_non_uniq= 0;
  1951.   uint unaliased_counter;
  1952.   LINT_INIT(unaliased_counter);
  1953.   *unaliased= FALSE;
  1954.   if (find->type() == Item::FIELD_ITEM || find->type() == Item::REF_ITEM)
  1955.   {
  1956.     field_name= ((Item_ident*) find)->field_name;
  1957.     table_name= ((Item_ident*) find)->table_name;
  1958.     db_name=    ((Item_ident*) find)->db_name;
  1959.   }
  1960.   for (uint i= 0; (item=li++); i++)
  1961.   {
  1962.     if (field_name && item->type() == Item::FIELD_ITEM)
  1963.     {
  1964.       Item_field *item_field= (Item_field*) item;
  1965.       /*
  1966. In case of group_concat() with ORDER BY condition in the QUERY
  1967. item_field can be field of temporary table without item name 
  1968. (if this field created from expression argument of group_concat()),
  1969. => we have to check presence of name before compare
  1970.       */ 
  1971.       if (!item_field->name)
  1972.         continue;
  1973.       if (table_name)
  1974.       {
  1975.         /*
  1976.           If table name is specified we should find field 'field_name' in
  1977.           table 'table_name'. According to SQL-standard we should ignore
  1978.           aliases in this case.
  1979.           Since we should NOT prefer fields from the select list over
  1980.           other fields from the tables participating in this select in
  1981.           case of ambiguity we have to do extra check outside this function.
  1982.           We use strcmp for table names and database names as these may be
  1983.           case sensitive. In cases where they are not case sensitive, they
  1984.           are always in lower case.
  1985.   item_field->field_name and item_field->table_name can be 0x0 if
  1986.   item is not fix_field()'ed yet.
  1987.         */
  1988.         if (item_field->field_name && item_field->table_name &&
  1989.     !my_strcasecmp(system_charset_info, item_field->field_name,
  1990.                            field_name) &&
  1991.             !strcmp(item_field->table_name, table_name) &&
  1992.             (!db_name || (item_field->db_name &&
  1993.                           !strcmp(item_field->db_name, db_name))))
  1994.         {
  1995.           if (found_unaliased)
  1996.           {
  1997.             if ((*found_unaliased)->eq(item, 0))
  1998.               continue;
  1999.             /*
  2000.               Two matching fields in select list.
  2001.               We already can bail out because we are searching through
  2002.               unaliased names only and will have duplicate error anyway.
  2003.             */
  2004.             if (report_error != IGNORE_ERRORS)
  2005.               my_printf_error(ER_NON_UNIQ_ERROR, ER(ER_NON_UNIQ_ERROR),
  2006.                               MYF(0), find->full_name(), current_thd->where);
  2007.             return (Item**) 0;
  2008.           }
  2009.           found_unaliased= li.ref();
  2010.           unaliased_counter= i;
  2011.           if (db_name)
  2012.             break;                              // Perfect match
  2013.         }
  2014.       }
  2015.       else if (!my_strcasecmp(system_charset_info, item_field->name,
  2016.                               field_name))
  2017.       {
  2018.         /*
  2019.           If table name was not given we should scan through aliases
  2020.           (or non-aliased fields) first. We are also checking unaliased
  2021.           name of the field in then next else-if, to be able to find
  2022.           instantly field (hidden by alias) if no suitable alias (or
  2023.           non-aliased field) was found.
  2024.         */
  2025.         if (found)
  2026.         {
  2027.           if ((*found)->eq(item, 0))
  2028.             continue;                           // Same field twice
  2029.           if (report_error != IGNORE_ERRORS)
  2030.             my_printf_error(ER_NON_UNIQ_ERROR, ER(ER_NON_UNIQ_ERROR),
  2031.                             MYF(0), find->full_name(), current_thd->where);
  2032.           return (Item**) 0;
  2033.         }
  2034.         found= li.ref();
  2035.         *counter= i;
  2036.       }
  2037.       else if (!my_strcasecmp(system_charset_info, item_field->field_name,
  2038.                               field_name))
  2039.       {
  2040.         /*
  2041.           We will use un-aliased field or react on such ambiguities only if
  2042.           we won't be able to find aliased field.
  2043.           Again if we have ambiguity with field outside of select list
  2044.           we should prefer fields from select list.
  2045.         */
  2046.         if (found_unaliased)
  2047.         {
  2048.           if ((*found_unaliased)->eq(item, 0))
  2049.             continue;                           // Same field twice
  2050.           found_unaliased_non_uniq= 1;
  2051.         }
  2052.         else
  2053.         {
  2054.           found_unaliased= li.ref();
  2055.           unaliased_counter= i;
  2056.         }
  2057.       }
  2058.     }
  2059.     else if (!table_name && (item->eq(find,0) ||
  2060.      find->name && item->name &&
  2061.      !my_strcasecmp(system_charset_info, 
  2062.     item->name,find->name)))
  2063.     {
  2064.       found= li.ref();
  2065.       *counter= i;
  2066.       break;
  2067.     }
  2068.   }
  2069.   if (!found)
  2070.   {
  2071.     if (found_unaliased_non_uniq)
  2072.     {
  2073.       if (report_error != IGNORE_ERRORS)
  2074.         my_printf_error(ER_NON_UNIQ_ERROR, ER(ER_NON_UNIQ_ERROR), MYF(0),
  2075.                         find->full_name(), current_thd->where);
  2076.       return (Item **) 0;
  2077.     }
  2078.     if (found_unaliased)
  2079.     {
  2080.       found= found_unaliased;
  2081.       *counter= unaliased_counter;
  2082.       *unaliased= TRUE;
  2083.     }
  2084.   }
  2085.   if (found)
  2086.     return found;
  2087.   if (report_error != REPORT_EXCEPT_NOT_FOUND)
  2088.   {
  2089.     if (report_error == REPORT_ALL_ERRORS)
  2090.       my_printf_error(ER_BAD_FIELD_ERROR, ER(ER_BAD_FIELD_ERROR), MYF(0),
  2091.       find->full_name(), current_thd->where);
  2092.     return (Item **) 0;
  2093.   }
  2094.   else
  2095.     return (Item **) not_found_item;
  2096. }
  2097. /****************************************************************************
  2098. ** Expand all '*' in given fields
  2099. ****************************************************************************/
  2100. int setup_wild(THD *thd, TABLE_LIST *tables, List<Item> &fields,
  2101.        List<Item> *sum_func_list,
  2102.        uint wild_num)
  2103. {
  2104.   DBUG_ENTER("setup_wild");
  2105.   if (!wild_num)
  2106.     DBUG_RETURN(0);
  2107.   reg2 Item *item;
  2108.   List_iterator<Item> it(fields);
  2109.   Item_arena *arena, backup;
  2110.   /*
  2111.     If we are in preparing prepared statement phase then we have change
  2112.     temporary mem_root to statement mem root to save changes of SELECT list
  2113.   */
  2114.   arena= thd->change_arena_if_needed(&backup);
  2115.   while (wild_num && (item= it++))
  2116.   {    
  2117.     if (item->type() == Item::FIELD_ITEM &&
  2118.         ((Item_field*) item)->field_name &&
  2119. ((Item_field*) item)->field_name[0] == '*' &&
  2120. !((Item_field*) item)->field)
  2121.     {
  2122.       uint elem= fields.elements;
  2123.       Item_subselect *subsel= thd->lex->current_select->master_unit()->item;
  2124.       if (subsel &&
  2125.           subsel->substype() == Item_subselect::EXISTS_SUBS)
  2126.       {
  2127.         /*
  2128.           It is EXISTS(SELECT * ...) and we can replace * by any constant.
  2129.           Item_int do not need fix_fields() because it is basic constant.
  2130.         */
  2131.         it.replace(new Item_int("Not_used", (longlong) 1, 21));
  2132.       }
  2133.       else if (insert_fields(thd,tables,((Item_field*) item)->db_name,
  2134.                              ((Item_field*) item)->table_name, &it))
  2135.       {
  2136.         if (arena)
  2137.   thd->restore_backup_item_arena(arena, &backup);
  2138. DBUG_RETURN(-1);
  2139.       }
  2140.       if (sum_func_list)
  2141.       {
  2142. /*
  2143.   sum_func_list is a list that has the fields list as a tail.
  2144.   Because of this we have to update the element count also for this
  2145.   list after expanding the '*' entry.
  2146. */
  2147. sum_func_list->elements+= fields.elements - elem;
  2148.       }
  2149.       wild_num--;
  2150.     }
  2151.   }
  2152.   if (arena)
  2153.     thd->restore_backup_item_arena(arena, &backup);
  2154.   DBUG_RETURN(0);
  2155. }
  2156. /****************************************************************************
  2157. ** Check that all given fields exists and fill struct with current data
  2158. ****************************************************************************/
  2159. int setup_fields(THD *thd, Item **ref_pointer_array, TABLE_LIST *tables, 
  2160.  List<Item> &fields, bool set_query_id,
  2161.  List<Item> *sum_func_list, bool allow_sum_func)
  2162. {
  2163.   reg2 Item *item;
  2164.   List_iterator<Item> it(fields);
  2165.   DBUG_ENTER("setup_fields");
  2166.   thd->set_query_id=set_query_id;
  2167.   thd->allow_sum_func= allow_sum_func;
  2168.   thd->where="field list";
  2169.   /*
  2170.     To prevent fail on forward lookup we fill it with zerows,
  2171.     then if we got pointer on zero after find_item_in_list we will know
  2172.     that it is forward lookup.
  2173.     There is other way to solve problem: fill array with pointers to list,
  2174.     but it will be slower.
  2175.     TODO: remove it when (if) we made one list for allfields and
  2176.     ref_pointer_array
  2177.   */
  2178.   if (ref_pointer_array)
  2179.     bzero(ref_pointer_array, sizeof(Item *) * fields.elements);
  2180.   Item **ref= ref_pointer_array;
  2181.   while ((item= it++))
  2182.   {
  2183.     if (!item->fixed && item->fix_fields(thd, tables, it.ref()) ||
  2184. (item= *(it.ref()))->check_cols(1))
  2185.       DBUG_RETURN(-1); /* purecov: inspected */
  2186.     if (ref)
  2187.       *(ref++)= item;
  2188.     if (item->with_sum_func && item->type() != Item::SUM_FUNC_ITEM &&
  2189. sum_func_list)
  2190.       item->split_sum_func(thd, ref_pointer_array, *sum_func_list);
  2191.     thd->used_tables|=item->used_tables();
  2192.   }
  2193.   DBUG_RETURN(test(thd->net.report_error));
  2194. }
  2195. /*
  2196.   prepare tables
  2197.   SYNOPSIS
  2198.     setup_tables()
  2199.     tables table list
  2200.  NOTE
  2201.    Remap table numbers if INSERT ... SELECT
  2202.    Check also that the 'used keys' and 'ignored keys' exists and set up the
  2203.    table structure accordingly
  2204.    This has to be called for all tables that are used by items, as otherwise
  2205.    table->map is not set and all Item_field will be regarded as const items.
  2206.  RETURN
  2207.    0 ok;  In this case *map will includes the choosed index
  2208.    1 error
  2209. */
  2210. bool setup_tables(TABLE_LIST *tables)
  2211. {
  2212.   DBUG_ENTER("setup_tables");
  2213.   uint tablenr=0;
  2214.   for (TABLE_LIST *table_list=tables ; table_list ;
  2215.        table_list=table_list->next,tablenr++)
  2216.   {
  2217.     TABLE *table= table_list->table;
  2218.     setup_table_map(table, table_list, tablenr);
  2219.     table->used_keys= table->keys_for_keyread;
  2220.     if (table_list->use_index)
  2221.     {
  2222.       key_map map;
  2223.       get_key_map_from_key_list(&map, table, table_list->use_index);
  2224.       if (map.is_set_all())
  2225. DBUG_RETURN(1);
  2226.       table->keys_in_use_for_query=map;
  2227.     }
  2228.     if (table_list->ignore_index)
  2229.     {
  2230.       key_map map;
  2231.       get_key_map_from_key_list(&map, table, table_list->ignore_index);
  2232.       if (map.is_set_all())
  2233. DBUG_RETURN(1);
  2234.       table->keys_in_use_for_query.subtract(map);
  2235.     }
  2236.     table->used_keys.intersect(table->keys_in_use_for_query);
  2237.   }
  2238.   if (tablenr > MAX_TABLES)
  2239.   {
  2240.     my_error(ER_TOO_MANY_TABLES,MYF(0),MAX_TABLES);
  2241.     DBUG_RETURN(1);
  2242.   }
  2243.   DBUG_RETURN(0);
  2244. }
  2245. /*
  2246.    Create a key_map from a list of index names
  2247.    SYNOPSIS
  2248.      get_key_map_from_key_list()
  2249.      map key_map to fill in
  2250.      table Table
  2251.      index_list List of index names
  2252.    RETURN
  2253.      0 ok;  In this case *map will includes the choosed index
  2254.      1 error
  2255. */
  2256. bool get_key_map_from_key_list(key_map *map, TABLE *table,
  2257.                                List<String> *index_list)
  2258. {
  2259.   List_iterator_fast<String> it(*index_list);
  2260.   String *name;
  2261.   uint pos;
  2262.   map->clear_all();
  2263.   while ((name=it++))
  2264.   {
  2265.     if ((pos= find_type(&table->keynames, name->ptr(), name->length(), 1)) <=
  2266. 0)
  2267.     {
  2268.       my_error(ER_KEY_COLUMN_DOES_NOT_EXITS, MYF(0), name->c_ptr(),
  2269.        table->real_name);
  2270.       map->set_all();
  2271.       return 1;
  2272.     }
  2273.     map->set_bit(pos-1);
  2274.   }
  2275.   return 0;
  2276. }
  2277. /****************************************************************************
  2278.   This just drops in all fields instead of current '*' field
  2279.   Returns pointer to last inserted field if ok
  2280. ****************************************************************************/
  2281. bool
  2282. insert_fields(THD *thd,TABLE_LIST *tables, const char *db_name,
  2283.       const char *table_name, List_iterator<Item> *it)
  2284. {
  2285.   char name_buff[NAME_LEN+1];
  2286.   uint found;
  2287.   DBUG_ENTER("insert_fields");
  2288.   if (db_name && lower_case_table_names)
  2289.   {
  2290.     /*
  2291.       convert database to lower case for comparison
  2292.       We can't do this in Item_field as this would change the
  2293.       'name' of the item which may be used in the select list
  2294.     */
  2295.     strmake(name_buff, db_name, sizeof(name_buff)-1);
  2296.     my_casedn_str(files_charset_info, name_buff);
  2297.     db_name= name_buff;
  2298.   }
  2299.   found=0;
  2300.   for (; tables ; tables=tables->next)
  2301.   {
  2302.     TABLE *table=tables->table;
  2303.     if (!table_name || (!my_strcasecmp(table_alias_charset, table_name,
  2304.        tables->alias) &&
  2305. (!db_name || !strcmp(tables->db,db_name))))
  2306.     {
  2307. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  2308.       /* Ensure that we have access right to all columns */
  2309.       if (!(table->grant.privilege & SELECT_ACL) &&
  2310.   check_grant_all_columns(thd,SELECT_ACL,table))
  2311. DBUG_RETURN(-1);
  2312. #endif
  2313.       Field **ptr=table->field,*field;
  2314.       TABLE *natural_join_table= 0;
  2315.       thd->used_tables|=table->map;
  2316.       if (!table->outer_join &&
  2317.           tables->natural_join &&
  2318.           !tables->natural_join->table->outer_join)
  2319.         natural_join_table= tables->natural_join->table;
  2320.       while ((field = *ptr++))
  2321.       {
  2322.         uint not_used_field_index= NO_CACHED_FIELD_INDEX;
  2323.         /* Skip duplicate field names if NATURAL JOIN is used */
  2324.         if (!natural_join_table ||
  2325.             !find_field_in_table(thd, natural_join_table, field->field_name, 
  2326.                                  strlen(field->field_name), 0, 0,
  2327.                                  &not_used_field_index))
  2328.         {
  2329.           Item_field *item= new Item_field(thd, field);
  2330.           if (!found++)
  2331.             (void) it->replace(item); // Replace '*'
  2332.           else
  2333.             it->after(item);
  2334.         }
  2335. /*
  2336.   Mark if field used before in this select.
  2337.   Used by 'insert' to verify if a field name is used twice
  2338. */
  2339. if (field->query_id == thd->query_id)
  2340.   thd->dupp_field=field;
  2341. field->query_id=thd->query_id;
  2342. table->used_keys.intersect(field->part_of_key);
  2343.       }
  2344.       /* All fields are used */
  2345.       table->used_fields=table->fields;
  2346.     }
  2347.   }
  2348.   if (!found)
  2349.   {
  2350.     if (!table_name)
  2351.       my_error(ER_NO_TABLES_USED,MYF(0));
  2352.     else
  2353.       my_error(ER_BAD_TABLE_ERROR,MYF(0),table_name);
  2354.   }
  2355.   DBUG_RETURN(!found);
  2356. }
  2357. /*
  2358. ** Fix all conditions and outer join expressions
  2359. */
  2360. int setup_conds(THD *thd,TABLE_LIST *tables,COND **conds)
  2361. {
  2362.   table_map not_null_tables= 0;
  2363.   Item_arena *arena= 0, backup;
  2364.   DBUG_ENTER("setup_conds");
  2365.   thd->set_query_id=1;
  2366.   thd->lex->current_select->cond_count= 0;
  2367.   if (*conds)
  2368.   {
  2369.     thd->where="where clause";
  2370.     if (!(*conds)->fixed && (*conds)->fix_fields(thd, tables, conds) ||
  2371. (*conds)->check_cols(1))
  2372.       DBUG_RETURN(1);
  2373.     not_null_tables= (*conds)->not_null_tables();
  2374.   }
  2375.   /* Check if we are using outer joins */
  2376.   for (TABLE_LIST *table=tables ; table ; table=table->next)
  2377.   {
  2378.     if (table->on_expr)
  2379.     {
  2380.       /* Make a join an a expression */
  2381.       thd->where="on clause";
  2382.       
  2383.       if (!table->on_expr->fixed &&
  2384.   table->on_expr->fix_fields(thd, tables, &table->on_expr) ||
  2385.   table->on_expr->check_cols(1))
  2386. DBUG_RETURN(1);
  2387.       thd->lex->current_select->cond_count++;
  2388.       /*
  2389. If it's a normal join or a LEFT JOIN which can be optimized away
  2390. add the ON/USING expression to the WHERE
  2391.       */
  2392.       if (!table->outer_join ||
  2393.   ((table->table->map & not_null_tables) &&
  2394.    !(specialflag & SPECIAL_NO_NEW_FUNC)))
  2395.       {
  2396. table->outer_join= 0;
  2397.         arena= thd->change_arena_if_needed(&backup);
  2398. *conds= and_conds(*conds, table->on_expr);
  2399. table->on_expr=0;
  2400. if (arena)
  2401.         {
  2402.   thd->restore_backup_item_arena(arena, &backup);
  2403.           arena= 0;                             // Safety if goto err
  2404.         }
  2405. if ((*conds) && !(*conds)->fixed &&
  2406.     (*conds)->fix_fields(thd, tables, conds))
  2407.   DBUG_RETURN(1);
  2408.       }
  2409.     }
  2410.     if (table->natural_join)
  2411.     {
  2412.       arena= thd->change_arena_if_needed(&backup);
  2413.       /* Make a join of all fields with have the same name */
  2414.       TABLE *t1= table->table;
  2415.       TABLE *t2= table->natural_join->table;
  2416.       Item_cond_and *cond_and= new Item_cond_and();
  2417.       if (!cond_and) // If not out of memory
  2418. goto err;
  2419.       cond_and->top_level_item();
  2420.       Field **t1_field, *t2_field;
  2421.       for (t1_field= t1->field; (*t1_field); t1_field++)
  2422.       {
  2423.         const char *t1_field_name= (*t1_field)->field_name;
  2424.         uint not_used_field_index= NO_CACHED_FIELD_INDEX;
  2425.         if ((t2_field= find_field_in_table(thd, t2, t1_field_name,
  2426.                                            strlen(t1_field_name), 0, 0,
  2427.                                            &not_used_field_index)))
  2428.         {
  2429.           Item_func_eq *tmp=new Item_func_eq(new Item_field(thd, *t1_field),
  2430.                                              new Item_field(thd, t2_field));
  2431.           if (!tmp)
  2432.             goto err;
  2433.           /* Mark field used for table cache */
  2434.           (*t1_field)->query_id= t2_field->query_id= thd->query_id;
  2435.           cond_and->list.push_back(tmp);
  2436.           t1->used_keys.intersect((*t1_field)->part_of_key);
  2437.           t2->used_keys.intersect(t2_field->part_of_key);
  2438.         }
  2439.       }
  2440.       thd->lex->current_select->cond_count+= cond_and->list.elements;
  2441.       // to prevent natural join processing during PS re-execution
  2442.       table->natural_join= 0;
  2443.       if (cond_and->list.elements)
  2444.       {
  2445.         if (!table->outer_join) // Not left join
  2446.         {
  2447.           *conds= and_conds(*conds, cond_and);
  2448.           // fix_fields() should be made with temporary memory pool
  2449.           if (arena)
  2450.             thd->restore_backup_item_arena(arena, &backup);
  2451.           if (*conds && !(*conds)->fixed)
  2452.           {
  2453.             if (!(*conds)->fixed && 
  2454.                 (*conds)->fix_fields(thd, tables, conds))
  2455.               DBUG_RETURN(1);
  2456.           }
  2457.         }
  2458.         else
  2459.         {
  2460.           table->on_expr= and_conds(table->on_expr, cond_and);
  2461.           // fix_fields() should be made with temporary memory pool
  2462.           if (arena)
  2463.             thd->restore_backup_item_arena(arena, &backup);
  2464.           if (table->on_expr && !table->on_expr->fixed)
  2465.           {
  2466.             if (!table->on_expr->fixed && 
  2467.                 table->on_expr->fix_fields(thd, tables, &table->on_expr))
  2468.              DBUG_RETURN(1);
  2469.           }
  2470.         }
  2471.       }
  2472.       else if (arena)
  2473.       {
  2474.         thd->restore_backup_item_arena(arena, &backup);
  2475.         arena= 0;                               // Safety if goto err
  2476.       }
  2477.     }
  2478.   }
  2479.   if (thd->current_arena->is_stmt_prepare())
  2480.   {
  2481.     /*
  2482.       We are in prepared statement preparation code => we should store
  2483.       WHERE clause changing for next executions.
  2484.       We do this ON -> WHERE transformation only once per PS statement.
  2485.     */
  2486.     thd->lex->current_select->where= *conds;
  2487.   }
  2488.   DBUG_RETURN(test(thd->net.report_error));
  2489. err:
  2490.   if (arena)
  2491.     thd->restore_backup_item_arena(arena, &backup);
  2492.   DBUG_RETURN(1);
  2493. }
  2494. /******************************************************************************
  2495. ** Fill a record with data (for INSERT or UPDATE)
  2496. ** Returns : 1 if some field has wrong type
  2497. ******************************************************************************/
  2498. int
  2499. fill_record(List<Item> &fields,List<Item> &values, bool ignore_errors)
  2500. {
  2501.   List_iterator_fast<Item> f(fields),v(values);
  2502.   Item *value;
  2503.   Item_field *field;
  2504.   DBUG_ENTER("fill_record");
  2505.   while ((field=(Item_field*) f++))
  2506.   {
  2507.     value=v++;
  2508.     Field *rfield= field->field;
  2509.     TABLE *table= rfield->table;
  2510.     if (rfield == table->next_number_field)
  2511.       table->auto_increment_field_not_null= TRUE;
  2512.     if ((value->save_in_field(rfield, 0) < 0) && !ignore_errors)
  2513.       DBUG_RETURN(1);
  2514.   }
  2515.   DBUG_RETURN(0);
  2516. }
  2517. int
  2518. fill_record(Field **ptr,List<Item> &values, bool ignore_errors)
  2519. {
  2520.   List_iterator_fast<Item> v(values);
  2521.   Item *value;
  2522.   DBUG_ENTER("fill_record");
  2523.   Field *field;
  2524.   while ((field = *ptr++))
  2525.   {
  2526.     value=v++;
  2527.     TABLE *table= field->table;
  2528.     if (field == table->next_number_field)
  2529.       table->auto_increment_field_not_null= TRUE;
  2530.     if ((value->save_in_field(field, 0) < 0) && !ignore_errors)
  2531.       DBUG_RETURN(1);
  2532.   }
  2533.   DBUG_RETURN(0);
  2534. }
  2535. static void mysql_rm_tmp_tables(void)
  2536. {
  2537.   uint i, idx;
  2538.   char filePath[FN_REFLEN], *tmpdir;
  2539.   MY_DIR *dirp;
  2540.   FILEINFO *file;
  2541.   DBUG_ENTER("mysql_rm_tmp_tables");
  2542.   for (i=0; i<=mysql_tmpdir_list.max; i++)
  2543.   {
  2544.     tmpdir=mysql_tmpdir_list.list[i];
  2545.   /* See if the directory exists */
  2546.     if (!(dirp = my_dir(tmpdir,MYF(MY_WME | MY_DONT_SORT))))
  2547.       continue;
  2548.     /* Remove all SQLxxx tables from directory */
  2549.   for (idx=0 ; idx < (uint) dirp->number_off_files ; idx++)
  2550.   {
  2551.     file=dirp->dir_entry+idx;
  2552.     /* skiping . and .. */
  2553.     if (file->name[0] == '.' && (!file->name[1] ||
  2554.        (file->name[1] == '.' &&  !file->name[2])))
  2555.       continue;
  2556.     if (!bcmp(file->name,tmp_file_prefix,tmp_file_prefix_length))
  2557.     {
  2558.         sprintf(filePath,"%s%s",tmpdir,file->name);
  2559.         VOID(my_delete(filePath,MYF(MY_WME)));
  2560.     }
  2561.   }
  2562.   my_dirend(dirp);
  2563.   }
  2564.   DBUG_VOID_RETURN;
  2565. }
  2566. /*****************************************************************************
  2567. unireg support functions
  2568. *****************************************************************************/
  2569. /*
  2570. ** Invalidate any cache entries that are for some DB
  2571. ** We can't use hash_delete when looping hash_elements. We mark them first
  2572. ** and afterwards delete those marked unused.
  2573. */
  2574. void remove_db_from_cache(const char *db)
  2575. {
  2576.   char name_buff[NAME_LEN+1];
  2577.   if (db && lower_case_table_names)
  2578.   {
  2579.     /*
  2580.       convert database to lower case for comparision.
  2581.     */
  2582.     strmake(name_buff, db, sizeof(name_buff)-1);
  2583.     my_casedn_str(files_charset_info, name_buff);
  2584.     db= name_buff;
  2585.   }
  2586.   for (uint idx=0 ; idx < open_cache.records ; idx++)
  2587.   {
  2588.     TABLE *table=(TABLE*) hash_element(&open_cache,idx);
  2589.     if (!strcmp(table->table_cache_key,db))
  2590.     {
  2591.       table->version=0L; /* Free when thread is ready */
  2592.       if (!table->in_use)
  2593. relink_unused(table);
  2594.     }
  2595.   }
  2596.   while (unused_tables && !unused_tables->version)
  2597.     VOID(hash_delete(&open_cache,(byte*) unused_tables));
  2598. }
  2599. /*
  2600. ** free all unused tables
  2601. */
  2602. void flush_tables()
  2603. {
  2604.   (void) pthread_mutex_lock(&LOCK_open);
  2605.   while (unused_tables)
  2606.     hash_delete(&open_cache,(byte*) unused_tables);
  2607.   (void) pthread_mutex_unlock(&LOCK_open);
  2608. }
  2609. /*
  2610.   Mark all entries with the table as deleted to force an reopen of the table
  2611.   The table will be closed (not stored in cache) by the current thread when
  2612.   close_thread_tables() is called.
  2613.   PREREQUISITES
  2614.     Lock on LOCK_open()
  2615.   RETURN
  2616.     0  This thread now have exclusive access to this table and no other thread
  2617.        can access the table until close_thread_tables() is called.
  2618.     1  Table is in use by another thread
  2619. */
  2620. bool remove_table_from_cache(THD *thd, const char *db, const char *table_name,
  2621.                              uint flags)
  2622. {
  2623.   char key[MAX_DBKEY_LENGTH];
  2624.   uint key_length;
  2625.   TABLE *table;
  2626.   bool result=0, signalled= 0;
  2627.   DBUG_ENTER("remove_table_from_cache");
  2628.   key_length=(uint) (strmov(strmov(key,db)+1,table_name)-key)+1;
  2629.   for (;;)
  2630.   {
  2631.     result= signalled= 0;
  2632.     for (table=(TABLE*) hash_search(&open_cache,(byte*) key,key_length) ;
  2633.          table;
  2634.          table = (TABLE*) hash_next(&open_cache,(byte*) key,key_length))
  2635.     {
  2636.       THD *in_use;
  2637.       table->version=0L; /* Free when thread is ready */
  2638.       if (!(in_use=table->in_use))
  2639.       {
  2640.         DBUG_PRINT("info",("Table was not in use"));
  2641.         relink_unused(table);
  2642.       }
  2643.       else if (in_use != thd)
  2644.       {
  2645.         in_use->some_tables_deleted=1;
  2646.         if (table->db_stat)
  2647.      result=1;
  2648.         /* Kill delayed insert threads */
  2649.         if ((in_use->system_thread & SYSTEM_THREAD_DELAYED_INSERT) &&
  2650.             ! in_use->killed)
  2651.         {
  2652.      in_use->killed=1;
  2653.   pthread_mutex_lock(&in_use->mysys_var->mutex);
  2654.   if (in_use->mysys_var->current_cond)
  2655.   {
  2656.     pthread_mutex_lock(in_use->mysys_var->current_mutex);
  2657.             signalled= 1;
  2658.     pthread_cond_broadcast(in_use->mysys_var->current_cond);
  2659.     pthread_mutex_unlock(in_use->mysys_var->current_mutex);
  2660.   }
  2661.   pthread_mutex_unlock(&in_use->mysys_var->mutex);
  2662.         }
  2663.         /*
  2664.   Now we must abort all tables locks used by this thread
  2665.   as the thread may be waiting to get a lock for another table
  2666.         */
  2667.         for (TABLE *thd_table= in_use->open_tables;
  2668.      thd_table ;
  2669.      thd_table= thd_table->next)
  2670.         {
  2671.   if (thd_table->db_stat) // If table is open
  2672.     signalled|= mysql_lock_abort_for_thread(thd, thd_table);
  2673.         }
  2674.       }
  2675.       else
  2676.         result= result || (flags & RTFC_OWNED_BY_THD_FLAG);
  2677.     }
  2678.     while (unused_tables && !unused_tables->version)
  2679.       VOID(hash_delete(&open_cache,(byte*) unused_tables));
  2680.     if (result && (flags & RTFC_WAIT_OTHER_THREAD_FLAG))
  2681.     {
  2682.       if (!(flags & RTFC_CHECK_KILLED_FLAG) || !thd->killed)
  2683.       {
  2684.         dropping_tables++;
  2685.         if (likely(signalled))
  2686.           (void) pthread_cond_wait(&COND_refresh, &LOCK_open);
  2687.         else
  2688.         {
  2689.           struct timespec abstime;
  2690.           /*
  2691.             It can happen that another thread has opened the
  2692.             table but has not yet locked any table at all. Since
  2693.             it can be locked waiting for a table that our thread
  2694.             has done LOCK TABLE x WRITE on previously, we need to
  2695.             ensure that the thread actually hears our signal
  2696.             before we go to sleep. Thus we wait for a short time
  2697.             and then we retry another loop in the
  2698.             remove_table_from_cache routine.
  2699.           */
  2700.           set_timespec(abstime, 10);
  2701.           pthread_cond_timedwait(&COND_refresh, &LOCK_open, &abstime);
  2702.         }
  2703.         dropping_tables--;
  2704.         continue;
  2705.       }
  2706.     }
  2707.     break;
  2708.   }
  2709.   DBUG_RETURN(result);
  2710. }
  2711. int setup_ftfuncs(SELECT_LEX *select_lex)
  2712. {
  2713.   List_iterator<Item_func_match> li(*(select_lex->ftfunc_list)),
  2714.                                  lj(*(select_lex->ftfunc_list));
  2715.   Item_func_match *ftf, *ftf2;
  2716.   while ((ftf=li++))
  2717.   {
  2718.     if (ftf->fix_index())
  2719.       return 1;
  2720.     lj.rewind();
  2721.     while ((ftf2=lj++) != ftf)
  2722.     {
  2723.       if (ftf->eq(ftf2,1) && !ftf2->master)
  2724.         ftf2->master=ftf;
  2725.     }
  2726.   }
  2727.   return 0;
  2728. }
  2729. int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order)
  2730. {
  2731.   if (select_lex->ftfunc_list->elements)
  2732.   {
  2733.     List_iterator<Item_func_match> li(*(select_lex->ftfunc_list));
  2734.     Item_func_match *ifm;
  2735.     DBUG_PRINT("info",("Performing FULLTEXT search"));
  2736.     thd->proc_info="FULLTEXT initialization";
  2737.     while ((ifm=li++))
  2738.       ifm->init_search(no_order);
  2739.   }
  2740.   return 0;
  2741. }