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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Optimising of MIN(), MAX() and COUNT(*) queries without 'group by' clause
  15.   by replacing the aggregate expression with a constant.  
  16.   Given a table with a compound key on columns (a,b,c), the following
  17.   types of queries are optimised (assuming the table handler supports
  18.   the required methods)
  19.   SELECT COUNT(*) FROM t1[,t2,t3,...]
  20.   SELECT MIN(b) FROM t1 WHERE a=const
  21.   SELECT MAX(c) FROM t1 WHERE a=const AND b=const
  22.   SELECT MAX(b) FROM t1 WHERE a=const AND b<const
  23.   SELECT MIN(b) FROM t1 WHERE a=const AND b>const
  24.   SELECT MIN(b) FROM t1 WHERE a=const AND b BETWEEN const AND const
  25.   SELECT MAX(b) FROM t1 WHERE a=const AND b BETWEEN const AND const
  26.   Instead of '<' one can use '<=', '>', '>=' and '=' as well.
  27.   Instead of 'a=const' the condition 'a IS NULL' can be used.
  28.   If all selected fields are replaced then we will also remove all
  29.   involved tables and return the answer without any join. Thus, the
  30.   following query will be replaced with a row of two constants:
  31.   SELECT MAX(b), MIN(d) FROM t1,t2 
  32.     WHERE a=const AND b<const AND d>const
  33.   (assuming a index for column d of table t2 is defined)
  34. */
  35. #include "mysql_priv.h"
  36. #include "sql_select.h"
  37. static bool find_key_for_maxmin(bool max_fl, TABLE_REF *ref, Field* field,
  38.                                 COND *cond, uint *range_fl,
  39.                                 uint *key_prefix_length);
  40. static int reckey_in_range(bool max_fl, TABLE_REF *ref, Field* field,
  41.                             COND *cond, uint range_fl, uint prefix_len);
  42. static int maxmin_in_range(bool max_fl, Field* field, COND *cond);
  43. /*
  44.   Substitutes constants for some COUNT(), MIN() and MAX() functions.
  45.   SYNOPSIS
  46.     opt_sum_query()
  47.     tables               Tables in query
  48.     all_fields           All fields to be returned
  49.     conds                WHERE clause
  50.   NOTE:
  51.     This function is only called for queries with sum functions and no
  52.     GROUP BY part.
  53.   RETURN VALUES
  54.     0 No errors
  55.     1 if all items were resolved
  56.    -1 on impossible conditions
  57.     OR an error number from my_base.h HA_ERR_... if a deadlock or a lock
  58.        wait timeout happens, for example
  59. */
  60. int opt_sum_query(TABLE_LIST *tables, List<Item> &all_fields,COND *conds)
  61. {
  62.   List_iterator_fast<Item> it(all_fields);
  63.   int const_result= 1;
  64.   bool recalc_const_item= 0;
  65.   longlong count= 1;
  66.   bool is_exact_count= TRUE;
  67.   table_map removed_tables= 0, outer_tables= 0, used_tables= 0;
  68.   table_map where_tables= 0;
  69.   Item *item;
  70.   int error;
  71.   if (conds)
  72.     where_tables= conds->used_tables();
  73.   /*
  74.     Analyze outer join dependencies, and, if possible, compute the number
  75.     of returned rows.
  76.   */
  77.   for (TABLE_LIST *tl=tables; tl ; tl= tl->next)
  78.   {
  79.     /* Don't replace expression on a table that is part of an outer join */
  80.     if (tl->on_expr)
  81.     {
  82.       outer_tables|= tl->table->map;
  83.       /*
  84.         We can't optimise LEFT JOIN in cases where the WHERE condition
  85.         restricts the table that is used, like in:
  86.           SELECT MAX(t1.a) FROM t1 LEFT JOIN t2 join-condition
  87.           WHERE t2.field IS NULL;
  88.       */
  89.       if (tl->table->map & where_tables)
  90.         return 0;
  91.     }
  92.     else
  93.       used_tables|= tl->table->map;
  94.     /*
  95.       If the storage manager of 'tl' gives exact row count, compute the total
  96.       number of rows. If there are no outer table dependencies, this count
  97.       may be used as the real count.
  98.     */
  99.     if (tl->table->file->table_flags() & HA_NOT_EXACT_COUNT)
  100.     {
  101.       is_exact_count= FALSE;
  102.       count= 1;                                 // ensure count != 0
  103.     }
  104.     else
  105.     {
  106.       tl->table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK);
  107.       count*= tl->table->file->records;
  108.     }
  109.   }
  110.   /*
  111.     Iterate through all items in the SELECT clause and replace
  112.     COUNT(), MIN() and MAX() with constants (if possible).
  113.   */
  114.   while ((item= it++))
  115.   {
  116.     if (item->type() == Item::SUM_FUNC_ITEM)
  117.     {
  118.       Item_sum *item_sum= (((Item_sum*) item));
  119.       switch (item_sum->sum_func()) {
  120.       case Item_sum::COUNT_FUNC:
  121.         /*
  122.           If the expr in count(expr) can never be null we can change this
  123.           to the number of rows in the tables if this number is exact and
  124.           there are no outer joins.
  125.         */
  126.         if (!conds && !((Item_sum_count*) item)->args[0]->maybe_null &&
  127.             !outer_tables && is_exact_count)
  128.         {
  129.           ((Item_sum_count*) item)->make_const(count);
  130.           recalc_const_item= 1;
  131.         }
  132.         else
  133.           const_result= 0;
  134.         break;
  135.       case Item_sum::MIN_FUNC:
  136.       {
  137.         /*
  138.           If MIN(expr) is the first part of a key or if all previous
  139.           parts of the key is found in the COND, then we can use
  140.           indexes to find the key.
  141.         */
  142.         Item *expr=item_sum->args[0];
  143.         if (expr->type() == Item::FIELD_ITEM)
  144.         {
  145.           byte key_buff[MAX_KEY_LENGTH];
  146.           TABLE_REF ref;
  147.           uint range_fl, prefix_len;
  148.           ref.key_buff= key_buff;
  149.           Item_field *item_field= ((Item_field*) expr);
  150.           TABLE *table= item_field->field->table;
  151.           /* 
  152.             Look for a partial key that can be used for optimization.
  153.             If we succeed, ref.key_length will contain the length of
  154.             this key, while prefix_len will contain the length of 
  155.             the beginning of this key without field used in MIN(). 
  156.             Type of range for the key part for this field will be
  157.             returned in range_fl.
  158.           */
  159.           if ((outer_tables & table->map) ||
  160.               !find_key_for_maxmin(0, &ref, item_field->field, conds,
  161.                                    &range_fl, &prefix_len))
  162.           {
  163.             const_result= 0;
  164.             break;
  165.           }
  166.           error= table->file->ha_index_init((uint) ref.key);
  167.           if (!ref.key_length)
  168.             error= table->file->index_first(table->record[0]);
  169.           else
  170.     error= table->file->index_read(table->record[0],key_buff,
  171.    ref.key_length,
  172.    range_fl & NEAR_MIN ?
  173.    HA_READ_AFTER_KEY :
  174.    HA_READ_KEY_OR_NEXT);
  175.   if (!error && reckey_in_range(0, &ref, item_field->field, 
  176.                 conds, range_fl, prefix_len))
  177.     error= HA_ERR_KEY_NOT_FOUND;
  178.           if (table->key_read)
  179.           {
  180.             table->key_read= 0;
  181.             table->file->extra(HA_EXTRA_NO_KEYREAD);
  182.           }
  183.           table->file->ha_index_end();
  184.           if (error)
  185.   {
  186.     if (error == HA_ERR_KEY_NOT_FOUND || error == HA_ERR_END_OF_FILE)
  187.       return -1;        // No rows matching WHERE
  188.     /* HA_ERR_LOCK_DEADLOCK or some other error */
  189.       table->file->print_error(error, MYF(0));
  190.             return(error);
  191.   }
  192.           removed_tables|= table->map;
  193.         }
  194.         else if (!expr->const_item() || !is_exact_count)
  195.         {
  196.           /*
  197.             The optimization is not applicable in both cases:
  198.             (a) 'expr' is a non-constant expression. Then we can't
  199.             replace 'expr' by a constant.
  200.             (b) 'expr' is a costant. According to ANSI, MIN/MAX must return
  201.             NULL if the query does not return any rows. Thus, if we are not
  202.             able to determine if the query returns any rows, we can't apply
  203.             the optimization and replace MIN/MAX with a constant.
  204.           */
  205.           const_result= 0;
  206.           break;
  207.         }
  208.         if (!count)
  209.         {
  210.           /* If count == 0, then we know that is_exact_count == TRUE. */
  211.           ((Item_sum_min*) item_sum)->clear(); /* Set to NULL. */
  212.         }
  213.         else
  214.           ((Item_sum_min*) item_sum)->reset(); /* Set to the constant value. */
  215.         ((Item_sum_min*) item_sum)->make_const();
  216.         recalc_const_item= 1;
  217.         break;
  218.       }
  219.       case Item_sum::MAX_FUNC:
  220.       {
  221.         /*
  222.           If MAX(expr) is the first part of a key or if all previous
  223.           parts of the key is found in the COND, then we can use
  224.           indexes to find the key.
  225.         */
  226.         Item *expr=item_sum->args[0];
  227.         if (expr->type() == Item::FIELD_ITEM)
  228.         {
  229.           byte key_buff[MAX_KEY_LENGTH];
  230.           TABLE_REF ref;
  231.       uint range_fl, prefix_len;
  232.           ref.key_buff= key_buff;
  233.       Item_field *item_field= ((Item_field*) expr);
  234.           TABLE *table= item_field->field->table;
  235.           /* 
  236.             Look for a partial key that can be used for optimization.
  237.             If we succeed, ref.key_length will contain the length of
  238.             this key, while prefix_len will contain the length of 
  239.             the beginning of this key without field used in MAX().
  240.             Type of range for the key part for this field will be
  241.             returned in range_fl.
  242.           */
  243.           if ((outer_tables & table->map) ||
  244.           !find_key_for_maxmin(1, &ref, item_field->field, conds,
  245.                    &range_fl, &prefix_len))
  246.           {
  247.             const_result= 0;
  248.             break;
  249.           }
  250.           error= table->file->ha_index_init((uint) ref.key);
  251.           if (!ref.key_length)
  252.             error= table->file->index_last(table->record[0]);
  253.           else
  254.     error= table->file->index_read(table->record[0], key_buff,
  255.    ref.key_length,
  256.    range_fl & NEAR_MAX ?
  257.    HA_READ_BEFORE_KEY :
  258.    HA_READ_PREFIX_LAST_OR_PREV);
  259.   if (!error && reckey_in_range(1, &ref, item_field->field, 
  260.                 conds, range_fl, prefix_len))
  261.     error= HA_ERR_KEY_NOT_FOUND;
  262.           if (table->key_read)
  263.           {
  264.             table->key_read=0;
  265.             table->file->extra(HA_EXTRA_NO_KEYREAD);
  266.           }
  267.           table->file->ha_index_end();
  268.           if (error)
  269.           {
  270.     if (error == HA_ERR_KEY_NOT_FOUND || error == HA_ERR_END_OF_FILE)
  271.       return -1;        // No rows matching WHERE
  272.     /* HA_ERR_LOCK_DEADLOCK or some other error */
  273.       table->file->print_error(error, MYF(0));
  274.             return(error);
  275.   }
  276.           removed_tables|= table->map;
  277.         }
  278.         else if (!expr->const_item() || !is_exact_count)
  279.         {
  280.           /*
  281.             The optimization is not applicable in both cases:
  282.             (a) 'expr' is a non-constant expression. Then we can't
  283.             replace 'expr' by a constant.
  284.             (b) 'expr' is a costant. According to ANSI, MIN/MAX must return
  285.             NULL if the query does not return any rows. Thus, if we are not
  286.             able to determine if the query returns any rows, we can't apply
  287.             the optimization and replace MIN/MAX with a constant.
  288.           */
  289.           const_result= 0;
  290.           break;
  291.         }
  292.         if (!count)
  293.         {
  294.           /* If count != 1, then we know that is_exact_count == TRUE. */
  295.           ((Item_sum_max*) item_sum)->clear(); /* Set to NULL. */
  296.         }
  297.         else
  298.           ((Item_sum_max*) item_sum)->reset(); /* Set to the constant value. */
  299.         ((Item_sum_max*) item_sum)->make_const();
  300.         recalc_const_item= 1;
  301.         break;
  302.       }
  303.       default:
  304.         const_result= 0;
  305.         break;
  306.       }
  307.     }
  308.     else if (const_result)
  309.     {
  310.       if (recalc_const_item)
  311.         item->update_used_tables();
  312.       if (!item->const_item())
  313.         const_result= 0;
  314.     }
  315.   }
  316.   /*
  317.     If we have a where clause, we can only ignore searching in the
  318.     tables if MIN/MAX optimisation replaced all used tables
  319.     We do not use replaced values in case of:
  320.     SELECT MIN(key) FROM table_1, empty_table
  321.     removed_tables is != 0 if we have used MIN() or MAX().
  322.   */
  323.   if (removed_tables && used_tables != removed_tables)
  324.     const_result= 0;                                // We didn't remove all tables
  325.   return const_result;
  326. }
  327. /*
  328.   Test if the predicate compares a field with constants
  329.   SYNOPSIS
  330.     simple_pred()
  331.     func_item   in:  Predicate item
  332.     args        out: Here we store the field followed by constants
  333.     inv_order   out: Is set to 1 if the predicate is of the form 'const op field' 
  334.   RETURN
  335.     0        func_item is a simple predicate: a field is compared with constants
  336.     1        Otherwise
  337. */
  338. static bool simple_pred(Item_func *func_item, Item **args, bool *inv_order)
  339. {
  340.   Item *item;
  341.   *inv_order= 0;
  342.   switch (func_item->argument_count()) {
  343.   case 1:
  344.     /* field IS NULL */
  345.     item= func_item->arguments()[0];
  346.     if (item->type() != Item::FIELD_ITEM)
  347.       return 0;
  348.     args[0]= item;
  349.     break;
  350.   case 2:
  351.     /* 'field op const' or 'const op field' */
  352.     item= func_item->arguments()[0];
  353.     if (item->type() == Item::FIELD_ITEM)
  354.     {
  355.       args[0]= item;
  356.       item= func_item->arguments()[1];
  357.       if (!item->const_item())
  358.         return 0;
  359.       args[1]= item;
  360.     }
  361.     else if (item->const_item())
  362.     {
  363.       args[1]= item;
  364.       item= func_item->arguments()[1];
  365.       if (item->type() != Item::FIELD_ITEM)
  366.         return 0;
  367.       args[0]= item;
  368.       *inv_order= 1;
  369.     }
  370.     else
  371.       return 0;
  372.     break;
  373.   case 3:
  374.     /* field BETWEEN const AND const */
  375.     item= func_item->arguments()[0];
  376.     if (item->type() == Item::FIELD_ITEM)
  377.     {
  378.       args[0]= item;
  379.       for (int i= 1 ; i <= 2; i++)
  380.       {
  381.         item= func_item->arguments()[i];
  382.         if (!item->const_item())
  383.           return 0;
  384.         args[i]= item;
  385.       }
  386.     }
  387.     else
  388.       return 0;
  389.   }
  390.   return 1;
  391. }
  392. /* 
  393.    Check whether a condition matches a key to get {MAX|MIN}(field):
  394.    SYNOPSIS
  395.      matching_cond()
  396.      max_fl         in:     Set to 1 if we are optimising MAX()              
  397.      ref            in/out: Reference to the structure we store the key value
  398.      keyinfo        in      Reference to the key info
  399.      field_part     in:     Pointer to the key part for the field
  400.      cond           in      WHERE condition
  401.      key_part_used  in/out: Map of matchings parts
  402.      range_fl       in/out: Says whether including key will be used
  403.      prefix_len     out:    Length of common key part for the range
  404.                             where MAX/MIN is searched for
  405.    DESCRIPTION
  406.      For the index specified by the keyinfo parameter, index that
  407.      contains field as its component (field_part), the function
  408.      checks whether the condition cond is a conjunction and all its
  409.      conjuncts referring to the columns of the same table as column
  410.      field are one of the following forms:
  411.      - f_i= const_i or const_i= f_i or f_i is null,
  412.        where f_i is part of the index
  413.      - field {<|<=|>=|>|=} const or const {<|<=|>=|>|=} field
  414.      - field between const1 and const2
  415.   RETURN
  416.     0        Index can't be used.
  417.     1        We can use index to get MIN/MAX value
  418. */
  419. static bool matching_cond(bool max_fl, TABLE_REF *ref, KEY *keyinfo, 
  420.                           KEY_PART_INFO *field_part, COND *cond,
  421.                           key_part_map *key_part_used, uint *range_fl,
  422.                           uint *prefix_len)
  423. {
  424.   if (!cond)
  425.     return 1;
  426.   Field *field= field_part->field;
  427.   if (!(cond->used_tables() & field->table->map))
  428.   {
  429.     /* Condition doesn't restrict the used table */
  430.     return 1;
  431.   }
  432.   if (cond->type() == Item::COND_ITEM)
  433.   {
  434.     if (((Item_cond*) cond)->functype() == Item_func::COND_OR_FUNC)
  435.       return 0;
  436.     /* AND */
  437.     List_iterator_fast<Item> li(*((Item_cond*) cond)->argument_list());
  438.     Item *item;
  439.     while ((item= li++))
  440.     {
  441.       if (!matching_cond(max_fl, ref, keyinfo, field_part, item,
  442.                          key_part_used, range_fl, prefix_len))
  443.         return 0;
  444.     }
  445.     return 1;
  446.   }
  447.   if (cond->type() != Item::FUNC_ITEM)
  448.     return 0;                                 // Not operator, can't optimize
  449.   bool eq_type= 0;                            // =, <=> or IS NULL
  450.   bool noeq_type= 0;                          // < or >  
  451.   bool less_fl= 0;                            // < or <= 
  452.   bool is_null= 0;
  453.   bool between= 0;
  454.   switch (((Item_func*) cond)->functype()) {
  455.   case Item_func::ISNULL_FUNC:
  456.     is_null= 1;     /* fall through */
  457.   case Item_func::EQ_FUNC:
  458.   case Item_func::EQUAL_FUNC:
  459.     eq_type= 1;
  460.     break;
  461.   case Item_func::LT_FUNC:
  462.     noeq_type= 1;   /* fall through */
  463.   case Item_func::LE_FUNC:
  464.     less_fl= 1;      
  465.     break;
  466.   case Item_func::GT_FUNC:
  467.     noeq_type= 1;   /* fall through */
  468.   case Item_func::GE_FUNC:
  469.     break;
  470.   case Item_func::BETWEEN:
  471.     between= 1;
  472.     break;
  473.   default:
  474.     return 0;                                        // Can't optimize function
  475.   }
  476.   
  477.   Item *args[3];
  478.   bool inv;
  479.   /* Test if this is a comparison of a field and constant */
  480.   if (!simple_pred((Item_func*) cond, args, &inv))
  481.     return 0;
  482.   if (inv && !eq_type)
  483.     less_fl= 1-less_fl;                         // Convert '<' -> '>' (etc)
  484.   /* Check if field is part of the tested partial key */
  485.   byte *key_ptr= ref->key_buff;
  486.   KEY_PART_INFO *part;
  487.   for (part= keyinfo->key_part;
  488.        ;
  489.        key_ptr+= part++->store_length)
  490.   {
  491.     if (part > field_part)
  492.       return 0;                     // Field is beyond the tested parts
  493.     if (part->field->eq(((Item_field*) args[0])->field))
  494.       break;                        // Found a part od the key for the field
  495.   }
  496.   bool is_field_part= part == field_part;
  497.   if (!(is_field_part || eq_type))
  498.     return 0;
  499.   key_part_map org_key_part_used= *key_part_used;
  500.   if (eq_type || between || max_fl == less_fl)
  501.   {
  502.     uint length= (key_ptr-ref->key_buff)+part->store_length;
  503.     if (ref->key_length < length)
  504.     /* Ultimately ref->key_length will contain the length of the search key */
  505.       ref->key_length= length;      
  506.     if (!*prefix_len && part+1 == field_part)       
  507.       *prefix_len= length;
  508.     if (is_field_part && eq_type)
  509.       *prefix_len= ref->key_length;
  510.   
  511.     *key_part_used|= (key_part_map) 1 << (part - keyinfo->key_part);
  512.   }
  513.   if (org_key_part_used != *key_part_used ||
  514.       (is_field_part && 
  515.        (between || eq_type || max_fl == less_fl) && !cond->val_int()))
  516.   {
  517.     /*
  518.       It's the first predicate for this part or a predicate of the
  519.       following form  that moves upper/lower bounds for max/min values:
  520.       - field BETWEEN const AND const
  521.       - field = const 
  522.       - field {<|<=} const, when searching for MAX
  523.       - field {>|>=} const, when searching for MIN
  524.     */
  525.     if (is_null)
  526.     {
  527.       part->field->set_null();
  528.       *key_ptr= (byte) 1;
  529.     }
  530.     else
  531.     {
  532.       store_val_in_field(part->field, args[between && max_fl ? 2 : 1]);
  533.       if (part->null_bit) 
  534.         *key_ptr++= (byte) test(part->field->is_null());
  535.       part->field->get_key_image((char*) key_ptr, part->length,
  536.                                  part->field->charset(), Field::itRAW);
  537.     }
  538.     if (is_field_part)
  539.     {
  540.       if (between || eq_type)
  541.         *range_fl&= ~(NO_MAX_RANGE | NO_MIN_RANGE);
  542.       else
  543.       {
  544.         *range_fl&= ~(max_fl ? NO_MAX_RANGE : NO_MIN_RANGE);
  545.         if (noeq_type)
  546.           *range_fl|=  (max_fl ? NEAR_MAX : NEAR_MIN);
  547.         else
  548.           *range_fl&= ~(max_fl ? NEAR_MAX : NEAR_MIN);
  549.       }
  550.     }
  551.   }
  552.   else if (eq_type)
  553.   {
  554.     if (!is_null && !cond->val_int() ||
  555.         is_null && !test(part->field->is_null()))  
  556.      return 0;                       // Impossible test
  557.   }
  558.   else if (is_field_part)
  559.     *range_fl&= ~(max_fl ? NO_MIN_RANGE : NO_MAX_RANGE);
  560.   return 1;  
  561. }
  562. /*
  563.   Check whether we can get value for {max|min}(field) by using a key.
  564.   SYNOPSIS
  565.     find_key_for_maxmin()
  566.     max_fl      in:     0 for MIN(field) / 1 for MAX(field)
  567.     ref         in/out  Reference to the structure we store the key value
  568.     field       in:     Field used inside MIN() / MAX()
  569.     cond        in:     WHERE condition
  570.     range_fl    out:    Bit flags for how to search if key is ok
  571.     prefix_len  out:    Length of prefix for the search range
  572.   DESCRIPTION
  573.     If where condition is not a conjunction of 0 or more conjuct the
  574.     function returns false, otherwise it checks whether there is an
  575.     index including field as its k-th component/part such that:
  576.      1. for each previous component f_i there is one and only one conjunct
  577.         of the form: f_i= const_i or const_i= f_i or f_i is null
  578.      2. references to field occur only in conjucts of the form:
  579.         field {<|<=|>=|>|=} const or const {<|<=|>=|>|=} field or 
  580.         field BETWEEN const1 AND const2
  581.      3. all references to the columns from the same table as column field
  582.         occur only in conjucts mentioned above.
  583.      If such an index exists the function through the ref parameter
  584.      returns the key value to find max/min for the field using the index,
  585.      the length of first (k-1) components of the key and flags saying
  586.      how to apply the key for the search max/min value.
  587.      (if we have a condition field = const, prefix_len contains the length
  588.       of the whole search key)
  589.   NOTE
  590.    This function may set table->key_read to 1, which must be reset after
  591.    index is used! (This can only happen when function returns 1)
  592.   RETURN
  593.     0   Index can not be used to optimize MIN(field)/MAX(field)
  594.     1   Can use key to optimize MIN()/MAX()
  595.         In this case ref, range_fl and prefix_len are updated
  596. */ 
  597.       
  598. static bool find_key_for_maxmin(bool max_fl, TABLE_REF *ref,
  599.                                 Field* field, COND *cond,
  600.                                 uint *range_fl, uint *prefix_len)
  601. {
  602.   if (!(field->flags & PART_KEY_FLAG))
  603.     return 0;                                        // Not key field
  604.   TABLE *table= field->table;
  605.   uint idx= 0;
  606.   KEY *keyinfo,*keyinfo_end;
  607.   for (keyinfo= table->key_info, keyinfo_end= keyinfo+table->keys ;
  608.        keyinfo != keyinfo_end;
  609.        keyinfo++,idx++)
  610.   {
  611.     KEY_PART_INFO *part,*part_end;
  612.     key_part_map key_part_to_use= 0;
  613.     uint jdx= 0;
  614.     *prefix_len= 0;
  615.     for (part= keyinfo->key_part, part_end= part+keyinfo->key_parts ;
  616.          part != part_end ;
  617.          part++, jdx++, key_part_to_use= (key_part_to_use << 1) | 1)
  618.     {
  619.       if (!(table->file->index_flags(idx, jdx, 0) & HA_READ_ORDER))
  620.         return 0;
  621.       if (field->eq(part->field))
  622.       {
  623.         ref->key= idx;
  624.         ref->key_length= 0;
  625.         key_part_map key_part_used= 0;
  626.         *range_fl= NO_MIN_RANGE | NO_MAX_RANGE;
  627.         if (matching_cond(max_fl, ref, keyinfo, part, cond,
  628.                           &key_part_used, range_fl, prefix_len) &&
  629.             !(key_part_to_use & ~key_part_used))
  630.         {
  631.           if (!max_fl && key_part_used == key_part_to_use && part->null_bit)
  632.           {
  633.             /*
  634.               SELECT MIN(key_part2) FROM t1 WHERE key_part1=const
  635.               If key_part2 may be NULL, then we want to find the first row
  636.               that is not null
  637.             */
  638.             ref->key_buff[ref->key_length]= 1;
  639.             ref->key_length+= part->store_length;
  640.             *range_fl&= ~NO_MIN_RANGE;
  641.             *range_fl|= NEAR_MIN;                // > NULL
  642.           }
  643.           /*
  644.             The following test is false when the key in the key tree is
  645.             converted (for example to upper case)
  646.           */
  647.           if (field->part_of_key.is_set(idx))
  648.           {
  649.             table->key_read= 1;
  650.             table->file->extra(HA_EXTRA_KEYREAD);
  651.           }
  652.           return 1;
  653.         }
  654.       }
  655.     }
  656.   }
  657.   return 0;
  658. }
  659. /*
  660.   Check whether found key is in range specified by conditions
  661.   SYNOPSIS
  662.     reckey_in_range()
  663.     max_fl      in:     0 for MIN(field) / 1 for MAX(field)
  664.     ref         in:     Reference to the key value and info
  665.     field       in:     Field used the MIN/MAX expression
  666.     cond        in:     WHERE condition
  667.     range_fl    in:     Says whether there is a condition to to be checked
  668.     prefix_len  in:     Length of the constant part of the key
  669.   RETURN
  670.     0        ok
  671.     1        WHERE was not true for the found row
  672. */
  673. static int reckey_in_range(bool max_fl, TABLE_REF *ref, Field* field,
  674.                             COND *cond, uint range_fl, uint prefix_len)
  675. {
  676.   if (key_cmp_if_same(field->table, ref->key_buff, ref->key, prefix_len))
  677.     return 1;
  678.   if (!cond || (range_fl & (max_fl ? NO_MIN_RANGE : NO_MAX_RANGE)))
  679.     return 0;
  680.   return maxmin_in_range(max_fl, field, cond);
  681. }
  682. /*
  683.   Check whether {MAX|MIN}(field) is in range specified by conditions
  684.   SYNOPSIS
  685.     maxmin_in_range()
  686.     max_fl      in:     0 for MIN(field) / 1 for MAX(field)
  687.     field       in:     Field used the MIN/MAX expression
  688.     cond        in:     WHERE condition
  689.   RETURN
  690.     0        ok
  691.     1        WHERE was not true for the found row
  692. */
  693. static int maxmin_in_range(bool max_fl, Field* field, COND *cond)
  694. {
  695.   /* If AND/OR condition */
  696.   if (cond->type() == Item::COND_ITEM)
  697.   {
  698.     List_iterator_fast<Item> li(*((Item_cond*) cond)->argument_list());
  699.     Item *item;
  700.     while ((item= li++))
  701.     {
  702.       if (maxmin_in_range(max_fl, field, item))
  703.         return 1;
  704.     }
  705.     return 0;
  706.   }
  707.   if (cond->used_tables() != field->table->map)
  708.     return 0;
  709.   bool less_fl= 0;
  710.   switch (((Item_func*) cond)->functype()) {
  711.   case Item_func::BETWEEN:
  712.     return cond->val_int() == 0;                // Return 1 if WHERE is false
  713.   case Item_func::LT_FUNC:
  714.   case Item_func::LE_FUNC:
  715.     less_fl= 1;
  716.   case Item_func::GT_FUNC:
  717.   case Item_func::GE_FUNC:
  718.   {
  719.     Item *item= ((Item_func*) cond)->arguments()[1];
  720.     /* In case of 'const op item' we have to swap the operator */
  721.     if (!item->const_item())
  722.       less_fl= 1-less_fl;
  723.     /*
  724.       We only have to check the expression if we are using an expression like
  725.       SELECT MAX(b) FROM t1 WHERE a=const AND b>const
  726.       not for
  727.       SELECT MAX(b) FROM t1 WHERE a=const AND b<const
  728.     */
  729.     if (max_fl != less_fl)
  730.       return cond->val_int() == 0;                // Return 1 if WHERE is false
  731.     return 0;
  732.   }
  733.   case Item_func::EQ_FUNC:
  734.   case Item_func::EQUAL_FUNC:
  735.     break;
  736.   default:                                        // Keep compiler happy
  737.     DBUG_ASSERT(1);                               // Impossible
  738.     break;
  739.   }
  740.   return 0;
  741. }