item_subselect.cc 205 KB
Newer Older
1
/* Copyright (c) 2002, 2016, Oracle and/or its affiliates.
Marko Mäkelä's avatar
Marko Mäkelä committed
2
   Copyright (c) 2010, 2022, MariaDB
3 4 5

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
unknown's avatar
unknown committed
6
   the Free Software Foundation; version 2 of the License.
7 8 9 10 11 12 13 14

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
Vicențiu Ciorbaru's avatar
Vicențiu Ciorbaru committed
15
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335  USA */
16

unknown's avatar
unknown committed
17 18 19 20 21
/**
  @file

  @brief
  subselect Item
22

unknown's avatar
unknown committed
23 24 25
  @todo
    - add function from mysql_select that use JOIN* as parameter to JOIN
    methods (sql_select.h/sql_select.cc)
26 27
*/

28
#include "mariadb.h"
29 30 31 32 33 34 35 36
#include "sql_priv.h"
/*
  It is necessary to include set_var.h instead of item.h because there
  are dependencies on include order for set_var.h and item.h. This
  will be resolved later.
*/
#include "sql_class.h"                          // set_var.h: THD
#include "set_var.h"
37
#include "sql_select.h"
38
#include "sql_parse.h"                          // check_stack_overrun
Igor Babaev's avatar
Igor Babaev committed
39
#include "sql_cte.h"
40
#include "sql_test.h"
41
#include "opt_trace.h"
42
#include "my_json_writer.h"
43

Sergey Petrunya's avatar
Sergey Petrunya committed
44 45
double get_post_group_estimate(JOIN* join, double join_op_rows);

46
LEX_CSTRING exists_outer_expr_name= { STRING_WITH_LEN("<exists outer expr>") };
unknown's avatar
unknown committed
47

48 49
LEX_CSTRING no_matter_name= {STRING_WITH_LEN("<no matter>") };

unknown's avatar
unknown committed
50
int check_and_do_in_subquery_rewrites(JOIN *join);
unknown's avatar
unknown committed
51

52 53 54
Item_subselect::Item_subselect(THD *thd_arg):
  Item_result_field(thd_arg), Used_tables_and_const_cache(),
  value_assigned(0), own_engine(0), thd(0), old_engine(0),
55
  have_to_be_excluded(0),
56
  inside_first_fix_fields(0), done_first_fix_fields(FALSE), 
57 58
  expr_cache(0), forced_const(FALSE), expensive_fl(FALSE),
  substitution(0), engine(0), eliminated(FALSE),
59
  changed(0), is_correlated(FALSE), with_recursive_reference(0)
60
{
61
  DBUG_ENTER("Item_subselect::Item_subselect");
62
  DBUG_PRINT("enter", ("this: %p", this));
63 64
  sortbuffer.str= 0;

unknown's avatar
unknown committed
65 66 67
#ifndef DBUG_OFF
  exec_counter= 0;
#endif
68
  with_flags|= item_with_t::SUBQUERY;
69
  reset();
70
  /*
71
    Item value is NULL if select_result_interceptor didn't change this value
72 73
    (i.e. some rows will be found returned)
  */
74
  null_value= TRUE;
75
  DBUG_VOID_RETURN;
76 77
}

78

79
void Item_subselect::init(st_select_lex *select_lex,
80
			  select_result_interceptor *result)
81
{
82 83 84 85
  /*
    Please see Item_singlerow_subselect::invalidate_and_restore_select_lex(),
    which depends on alterations to the parse tree implemented here.
  */
86 87

  DBUG_ENTER("Item_subselect::init");
88 89
  DBUG_PRINT("enter", ("select_lex: %p  this: %p",
                       select_lex, this));
90 91 92

  select_lex->parent_lex->relink_hack(select_lex);

unknown's avatar
unknown committed
93
  unit= select_lex->master_unit();
unknown's avatar
unknown committed
94

95 96 97
  if (unit->item)
  {
    engine= unit->item->engine;
98
    parsing_place= unit->item->parsing_place;
unknown's avatar
unknown committed
99 100 101 102 103 104 105 106 107 108 109 110 111
    if (unit->item->substype() == EXISTS_SUBS &&
        ((Item_exists_subselect *)unit->item)->exists_transformed)
    {
      /* it is permanent transformation of EXISTS to IN */
      unit->item= this;
      engine->change_result(this, result, FALSE);
    }
    else
    {
      /*
        Item can be changed in JOIN::prepare while engine in JOIN::optimize
        => we do not copy old_engine here
      */
112
      unit->thd->change_item_tree((Item**)&unit->item, this);
unknown's avatar
unknown committed
113 114
      engine->change_result(this, result, TRUE);
    }
115
  }
unknown's avatar
unknown committed
116
  else
117
  {
unknown's avatar
unknown committed
118
    SELECT_LEX *outer_select= unit->outer_select();
119
    THD *thd= unit->thd;
unknown's avatar
unknown committed
120 121 122 123 124 125 126
    /*
      do not take into account expression inside aggregate functions because
      they can access original table fields
    */
    parsing_place= (outer_select->in_sum_expr ?
                    NO_MATTER :
                    outer_select->parsing_place);
127
    if (unit->is_unit_op() &&
128
        (unit->first_select()->next_select() || unit->fake_select_lex))
129 130
      engine= new (thd->mem_root)
        subselect_union_engine(unit, result, this);
131
    else
132 133
      engine= new (thd->mem_root)
        subselect_single_select_engine(select_lex, result, this);
134
  }
135
  DBUG_PRINT("info", ("engine: %p", engine));
136 137 138
  DBUG_VOID_RETURN;
}

139 140 141 142 143 144
st_select_lex *
Item_subselect::get_select_lex()
{
  return unit->first_select();
}

unknown's avatar
unknown committed
145 146
void Item_subselect::cleanup()
{
unknown's avatar
unknown committed
147
  DBUG_ENTER("Item_subselect::cleanup");
unknown's avatar
unknown committed
148
  Item_result_field::cleanup();
unknown's avatar
unknown committed
149 150
  if (old_engine)
  {
151 152
    if (engine)
      engine->cleanup();
unknown's avatar
unknown committed
153 154 155
    engine= old_engine;
    old_engine= 0;
  }
156 157
  if (engine)
    engine->cleanup();
unknown's avatar
unknown committed
158
  reset();
159 160
  filesort_buffer.free_sort_buffer();
  my_free(sortbuffer.str);
Marko Mäkelä's avatar
Marko Mäkelä committed
161
  sortbuffer.str= 0;
162

unknown's avatar
unknown committed
163
  value_assigned= 0;
164
  expr_cache= 0;
165
  forced_const= FALSE;
unknown's avatar
unknown committed
166 167 168 169
  DBUG_PRINT("info", ("exec_counter: %d", exec_counter));
#ifndef DBUG_OFF
  exec_counter= 0;
#endif
unknown's avatar
unknown committed
170 171 172
  DBUG_VOID_RETURN;
}

173

unknown's avatar
unknown committed
174 175 176 177 178 179
void Item_singlerow_subselect::cleanup()
{
  DBUG_ENTER("Item_singlerow_subselect::cleanup");
  value= 0; row= 0;
  Item_subselect::cleanup();
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
180
}
181

182 183 184 185 186 187 188 189 190 191

void Item_in_subselect::cleanup()
{
  DBUG_ENTER("Item_in_subselect::cleanup");
  if (left_expr_cache)
  {
    left_expr_cache->delete_elements();
    delete left_expr_cache;
    left_expr_cache= NULL;
  }
unknown's avatar
unknown committed
192 193 194 195
  /*
    TODO: This breaks the commented assert in add_strategy().
    in_strategy&= ~SUBS_STRATEGY_CHOSEN;
  */
196
  first_execution= TRUE;
197
  materialization_tracker= NULL;
198
  pushed_cond_guards= NULL;
199 200 201 202
  Item_subselect::cleanup();
  DBUG_VOID_RETURN;
}

unknown's avatar
unknown committed
203 204 205 206 207 208 209 210 211 212

void Item_allany_subselect::cleanup()
{
  /*
    The MAX/MIN transformation through injection is reverted through the
    change_item_tree() mechanism. Revert the select_lex object of the
    query to its initial state.
  */
  for (SELECT_LEX *sl= unit->first_select();
       sl; sl= sl->next_select())
unknown's avatar
unknown committed
213
    if (test_set_strategy(SUBS_MAXMIN_INJECTED))
unknown's avatar
unknown committed
214 215 216 217 218
      sl->with_sum_func= false;
  Item_in_subselect::cleanup();
}


unknown's avatar
unknown committed
219 220
Item_subselect::~Item_subselect()
{
221
  DBUG_ENTER("Item_subselect::~Item_subselect");
222
  DBUG_PRINT("enter", ("this: %p", this));
223
  if (own_engine)
224 225
    delete engine;
  else
226 227
    if (engine)  // can be empty in case of EOM
      engine->cleanup();
228
  engine= NULL;
229
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
230 231
}

unknown's avatar
unknown committed
232
bool
233
Item_subselect::select_transformer(JOIN *join)
unknown's avatar
unknown committed
234 235
{
  DBUG_ENTER("Item_subselect::select_transformer");
236
  DBUG_ASSERT(thd == join->thd);
unknown's avatar
unknown committed
237
  DBUG_RETURN(false);
unknown's avatar
unknown committed
238 239 240
}


241
bool Item_subselect::fix_fields(THD *thd_param, Item **ref)
242
{
243
  THD_WHERE save_where= thd_param->where;
unknown's avatar
unknown committed
244
  uint8 uncacheable;
unknown's avatar
unknown committed
245
  bool res;
unknown's avatar
unknown committed
246

247 248 249 250
  thd= thd_param;

  DBUG_ASSERT(unit->thd == thd);

251 252 253 254 255 256 257 258
  {
    SELECT_LEX *upper= unit->outer_select();
    if (upper->parsing_place == IN_HAVING)
      upper->subquery_in_having= 1;
    /* The subquery is an expression cache candidate */
    upper->expr_cache_may_be_used[upper->parsing_place]= TRUE;
  }

259
  status_var_increment(thd_param->status_var.feature_subquery);
260

261
  DBUG_ASSERT(fixed() == 0);
Igor Babaev's avatar
Igor Babaev committed
262
  engine->set_thd((thd= thd_param));
263 264 265 266
  if (!done_first_fix_fields)
  {
    done_first_fix_fields= TRUE;
    inside_first_fix_fields= TRUE;
267 268 269 270 271
    upper_refs.empty();
    /*
      psergey-todo: remove _first_fix_fields calls, we need changes on every
      execution
    */
272 273
  }

Sergey Petrunia's avatar
Sergey Petrunia committed
274
  eliminated= FALSE;
275
  parent_select= thd_param->lex->current_select;
276

277
  if (check_stack_overrun(thd, STACK_MIN_SIZE, (uchar*)&res))
unknown's avatar
unknown committed
278
    return TRUE;
Sergey Petrunia's avatar
Sergey Petrunia committed
279
  
280
  for (SELECT_LEX *sl= unit->first_select(); sl; sl= sl->next_select())
281
  {
282 283
    if (sl->tvc)
    {
284 285 286 287 288
      if (!(sl= wrap_tvc_into_select(thd, sl)))
      {
        res= TRUE;
        goto end;
      }
289 290
      if (sl ==  unit->first_select() && !sl->next_select())
        unit->fake_select_lex= 0;
291
    }
292
  }
293
  
294
  if (!(res= engine->prepare(thd)))
unknown's avatar
unknown committed
295
  {
296 297
    // all transformation is done (used by prepared statements)
    changed= 1;
298
    inside_first_fix_fields= FALSE;
299 300 301 302 303 304 305

    /*
      Substitute the current item with an Item_in_optimizer that was
      created by Item_in_subselect::select_in_like_transformer and
      call fix_fields for the substituted item which in turn calls
      engine->prepare for the subquery predicate.
    */
306 307
    if (substitution)
    {
308 309 310 311
      /*
        If the top item of the WHERE/HAVING condition changed,
        set correct WHERE/HAVING for PS.
      */
unknown's avatar
unknown committed
312
      if (unit->outer_select()->where == (*ref))
unknown's avatar
unknown committed
313
        unit->outer_select()->where= substitution;
314
      else if (unit->outer_select()->having == (*ref))
unknown's avatar
unknown committed
315
        unit->outer_select()->having= substitution;
unknown's avatar
unknown committed
316

317 318 319 320 321
      (*ref)= substitution;
      substitution->name= name;
      if (have_to_be_excluded)
	engine->exclude();
      substitution= 0;
322
      thd->where= THD_WHERE::CHECKING_TRANSFORMED_SUBQUERY;
323
      res= (*ref)->fix_fields_if_needed(thd, ref);
324
      goto end;
Sergey Petrunya's avatar
Sergey Petrunya committed
325

326
    }
unknown's avatar
unknown committed
327 328
    // Is it one field subselect?
    if (engine->cols() > max_columns)
329
    {
unknown's avatar
unknown committed
330
      my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
331 332 333 334 335 336
      res= TRUE;
      goto end;
    }
    if (fix_length_and_dec())
    {
      res= TRUE;
337
      goto end;
unknown's avatar
unknown committed
338 339
    }
  }
unknown's avatar
unknown committed
340
  else
341
    goto end;
unknown's avatar
unknown committed
342
  
Igor Babaev's avatar
Igor Babaev committed
343 344
  if ((uncacheable= engine->uncacheable() & ~UNCACHEABLE_EXPLAIN) ||
      with_recursive_reference)
unknown's avatar
unknown committed
345 346
  {
    const_item_cache= 0;
347 348
    if (uncacheable & UNCACHEABLE_RAND)
      used_tables_cache|= RAND_TABLE_BIT;
unknown's avatar
unknown committed
349
  }
350
  base_flags|= item_base_t::FIXED;
unknown's avatar
unknown committed
351

352
end:
353
  done_first_fix_fields= FALSE;
Sergey Petrunya's avatar
Sergey Petrunya committed
354
  inside_first_fix_fields= FALSE;
355
  thd->where= save_where;
356 357 358
  return res;
}

359

360
bool Item_subselect::enumerate_field_refs_processor(void *arg)
Sergey Petrunia's avatar
Sergey Petrunia committed
361
{
362 363 364 365
  List_iterator<Ref_to_outside> it(upper_refs);
  Ref_to_outside *upper;
  
  while ((upper= it++))
Sergey Petrunia's avatar
Sergey Petrunia committed
366
  {
367 368
    if (upper->item &&
        upper->item->walk(&Item::enumerate_field_refs_processor, FALSE, arg))
Sergey Petrunia's avatar
Sergey Petrunia committed
369 370 371 372 373
      return TRUE;
  }
  return FALSE;
}

374
bool Item_subselect::mark_as_eliminated_processor(void *arg)
Sergey Petrunia's avatar
Sergey Petrunia committed
375 376 377 378 379
{
  eliminated= TRUE;
  return FALSE;
}

380

381 382 383 384 385 386 387 388 389 390
/**
  Remove a subselect item from its unit so that the unit no longer
  represents a subquery.

  @param arg  unused parameter

  @return
    FALSE to force the evaluation of the processor for the subsequent items.
*/

391
bool Item_subselect::eliminate_subselect_processor(void *arg)
392 393
{
  unit->item= NULL;
394 395
  if (!unit->is_excluded())
    unit->exclude();
396 397 398 399 400
  eliminated= TRUE;
  return FALSE;
}


401 402 403 404 405 406 407
bool Item_subselect::mark_as_dependent(THD *thd, st_select_lex *select, 
                                       Item *item)
{
  if (inside_first_fix_fields)
  {
    is_correlated= TRUE;
    Ref_to_outside *upper;
408
    if (!(upper= new (thd->mem_root) Ref_to_outside()))
409 410 411
      return TRUE;
    upper->select= select;
    upper->item= item;
412
    if (upper_refs.push_back(upper, thd->mem_root))
413 414 415 416 417
      return TRUE;
  }
  return FALSE;
}

418

419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
/*
  @brief
    Update the table bitmaps for the outer references used within a subquery
*/

bool Item_subselect::update_table_bitmaps_processor(void *arg)
{
  List_iterator<Ref_to_outside> it(upper_refs);
  Ref_to_outside *upper;

  while ((upper= it++))
  {
    if (upper->item &&
        upper->item->walk(&Item::update_table_bitmaps_processor, FALSE, arg))
      return TRUE;
  }
  return FALSE;
}


439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
/*
  Adjust attributes after our parent select has been merged into grandparent

  DESCRIPTION
    Subquery is a composite object which may be correlated, that is, it may
    have
    1. references to tables of the parent select (i.e. one that has the clause
      with the subquery predicate)
    2. references to tables of the grandparent select
    3. references to tables of further ancestors.
    
    Before the pullout, this item indicates:
    - #1 with table bits in used_tables()
    - #2 and #3 with OUTER_REF_TABLE_BIT.

    After parent has been merged with grandparent:
    - references to parent and grandparent tables should be indicated with 
      table bits.
    - references to greatgrandparent and further ancestors - with
      OUTER_REF_TABLE_BIT.
*/

461 462
void Item_subselect::fix_after_pullout(st_select_lex *new_parent,
                                       Item **ref, bool merge)
463 464 465 466 467
{
  recalc_used_tables(new_parent, TRUE);
  parent_select= new_parent;
}

468

469 470 471 472 473
class Field_fixer: public Field_enumerator
{
public:
  table_map used_tables; /* Collect used_tables here */
  st_select_lex *new_parent; /* Select we're in */
474
  void visit_field(Item_field *item) override
475 476 477 478 479
  {
    //for (TABLE_LIST *tbl= new_parent->leaf_tables; tbl; tbl= tbl->next_local)
    //{
    //  if (tbl->table == field->table)
    //  {
480
        used_tables|= item->field->table->map;
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
    //    return;
    //  }
    //}
    //used_tables |= OUTER_REF_TABLE_BIT;
  }
};


/*
  Recalculate used_tables_cache 
*/

void Item_subselect::recalc_used_tables(st_select_lex *new_parent, 
                                        bool after_pullout)
{
unknown's avatar
unknown committed
496
  List_iterator_fast<Ref_to_outside> it(upper_refs);
497
  Ref_to_outside *upper;
Monty's avatar
Monty committed
498
  DBUG_ENTER("recalc_used_tables");
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
  
  used_tables_cache= 0;
  while ((upper= it++))
  {
    bool found= FALSE;
    /*
      Check if
        1. the upper reference refers to the new immediate parent select, or
        2. one of the further ancestors.

      We rely on the fact that the tree of selects is modified by some kind of
      'flattening', i.e. a process where child selects are merged into their
      parents.
      The merged selects are removed from the select tree but keep pointers to
      their parents.
    */
    for (st_select_lex *sel= upper->select; sel; sel= sel->outer_select())
    {
      /* 
        If we've reached the new parent select by walking upwards from
        reference's original select, this means that the reference is now 
        referring to the direct parent:
      */
      if (sel == new_parent)
      {
        found= TRUE;
        /* 
          upper->item may be NULL when we've referred to a grouping function,
          in which case we don't care about what it's table_map really is,
          because item->with_sum_func==1 will ensure correct placement of the
          item.
        */
        if (upper->item)
        {
          // Now, iterate over fields and collect used_tables() attribute:
          Field_fixer fixer;
          fixer.used_tables= 0;
          fixer.new_parent= new_parent;
537
          upper->item->walk(&Item::enumerate_field_refs_processor, 0, &fixer);
538
          used_tables_cache |= fixer.used_tables;
Igor Babaev's avatar
Igor Babaev committed
539
          upper->item->walk(&Item::update_table_bitmaps_processor, FALSE, NULL);
Sergey Petrunya's avatar
Sergey Petrunya committed
540
/*
541 542 543
          if (after_pullout)
            upper->item->fix_after_pullout(new_parent, &(upper->item));
          upper->item->update_used_tables();
Sergey Petrunya's avatar
Sergey Petrunya committed
544
*/          
545 546 547 548 549 550 551 552 553 554 555 556
        }
      }
    }
    if (!found)
      used_tables_cache|= OUTER_REF_TABLE_BIT;
  }
  /* 
    Don't update const_tables_cache yet as we don't yet know which of the
    parent's tables are constant. Parent will call update_used_tables() after
    he has done const table detection, and that will be our chance to update
    const_tables_cache.
  */
Monty's avatar
Monty committed
557 558
  DBUG_PRINT("exit", ("used_tables_cache: %llx", used_tables_cache));
  DBUG_VOID_RETURN;
559 560
}

561 562 563 564 565 566 567 568 569

/**
  Determine if a subquery is expensive to execute during query optimization.

  @details The cost of execution of a subquery is estimated based on an
  estimate of the number of rows the subquery will access during execution.
  This measure is used instead of JOIN::read_time, because it is considered
  to be much more reliable than the cost estimate.

570 571
  Note: the logic in this function must agree with
  JOIN::init_join_cache_and_keyread().
572

573 574 575 576 577 578
  @return true if the subquery is expensive
  @return false otherwise
*/
bool Item_subselect::is_expensive()
{
  double examined_rows= 0;
579 580
  bool all_are_simple= true;

581 582 583
  if (!expensive_fl && is_evaluated())
    return false;

584 585 586 587 588 589 590 591 592 593
  /* check extremely simple select */
  if (!unit->first_select()->next_select()) // no union
  {
    /*
      such single selects works even without optimization because
      can not makes loops
    */
    SELECT_LEX *sl= unit->first_select();
    JOIN *join = sl->join;
    if (join && !join->tables_list && !sl->first_inner_unit())
594
      return (expensive_fl= false);
595 596
  }

597 598 599 600

  for (SELECT_LEX *sl= unit->first_select(); sl; sl= sl->next_select())
  {
    JOIN *cur_join= sl->join;
601 602

    /* not optimized subquery */
603
    if (!cur_join)
604
      return (expensive_fl= true);
605 606 607 608 609

    /*
      If the subquery is not optimised or in the process of optimization
      it supposed to be expensive
    */
610
    if (cur_join->optimization_state != JOIN::OPTIMIZATION_DONE)
611
      return (expensive_fl= true);
612

613 614 615
    if (!cur_join->tables_list && !sl->first_inner_unit())
      continue;

unknown's avatar
unknown committed
616 617 618 619
    /*
      Subqueries whose result is known after optimization are not expensive.
      Such subqueries have all tables optimized away, thus have no join plan.
    */
620
    if ((cur_join->zero_result_cause || !cur_join->tables_list))
621 622 623 624 625 626
      continue;

    /*
      This is not simple SELECT in union so we can not go by simple condition
    */
    all_are_simple= false;
unknown's avatar
unknown committed
627 628 629 630 631

    /*
      If a subquery is not optimized we cannot estimate its cost. A subquery is
      considered optimized if it has a join plan.
    */
632
    if (!cur_join->join_tab)
633
      return (expensive_fl= true);
634 635 636 637 638 639 640

    if (sl->first_inner_unit())
    {
      /*
        Subqueries that contain subqueries are considered expensive.
        @todo: accumulate the cost of subqueries.
      */
641
      return (expensive_fl= true);
642 643 644 645 646
    }

    examined_rows+= cur_join->get_examined_rows();
  }

647
  // here we are sure that subquery is optimized so thd is set
648 649
  return (expensive_fl= !all_are_simple &&
	   (examined_rows > thd->variables.expensive_subquery_limit));
650 651 652
}


653 654 655 656 657 658
/*
  @brief
    Apply item processor for all scalar (i.e. Item*) expressions that
    occur in the nested join.
*/

659 660 661 662 663 664 665 666 667 668 669 670 671 672
static
int walk_items_for_table_list(Item_processor processor,
                              bool walk_subquery, void *argument,
                              List<TABLE_LIST>& join_list)
{
  List_iterator<TABLE_LIST> li(join_list);
  int res;
  while (TABLE_LIST *table= li++)
  {
    if (table->on_expr)
    {
      if ((res= table->on_expr->walk(processor, walk_subquery, argument)))
        return res;
    }
673 674 675 676 677 678 679 680
    if (Table_function_json_table *tf= table->table_function)
    {
      if ((res= tf->walk_items(processor, walk_subquery, argument)))
      {
        return res;
      }
    }

681 682 683 684 685 686 687 688 689 690 691
    if (table->nested_join)
    {
      if ((res= walk_items_for_table_list(processor, walk_subquery, argument,
                                          table->nested_join->join_list)))
        return res;
    }
  }
  return 0;
}


692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
bool Item_subselect::unknown_splocal_processor(void *argument)
{
  SELECT_LEX *sl= unit->first_select();
  if (sl->top_join_list.elements)
    return 0;
  if (sl->tvc && sl->tvc->walk_values(&Item::unknown_splocal_processor,
                                      false, argument))
    return true;
  for (SELECT_LEX *lex= unit->first_select(); lex; lex= lex->next_select())
  {
    /*
      TODO: walk through GROUP BY and ORDER yet eventually.
      This will require checking aliases in SELECT list:
        SELECT 1 AS a GROUP BY a;
        SELECT 1 AS a ORDER BY a;
    */
    List_iterator<Item> li(lex->item_list);
    Item *item;
    if (lex->where && (lex->where)->walk(&Item::unknown_splocal_processor,
                                         false, argument))
      return true;
    if (lex->having && (lex->having)->walk(&Item::unknown_splocal_processor,
                                           false, argument))
      return true;
    while ((item=li++))
    {
      if (item->walk(&Item::unknown_splocal_processor, false, argument))
        return true;
    }
  }
  return false;
}


726
bool Item_subselect::walk(Item_processor processor, bool walk_subquery,
727
                          void *argument)
728
{
729 730 731 732 733 734 735 736 737 738 739 740
  if (!(unit->uncacheable & ~UNCACHEABLE_DEPENDENT) && engine->is_executed() &&
      !unit->describe)
  {
    /*
      The subquery has already been executed (for real, it wasn't EXPLAIN's
      fake execution) so it should not matter what it has inside.
      
      The actual reason for not walking inside is that parts of the subquery
      (e.g. JTBM join nests and their IN-equality conditions may have been 
       invalidated by irreversible cleanups (those happen after an uncorrelated 
       subquery has been executed).
    */
741
    return (this->*processor)(argument);
742
  }
743 744 745 746 747 748 749 750 751 752 753 754 755

  if (walk_subquery)
  {
    for (SELECT_LEX *lex= unit->first_select(); lex; lex= lex->next_select())
    {
      List_iterator<Item> li(lex->item_list);
      ORDER *order;

      if (lex->where && (lex->where)->walk(processor, walk_subquery, argument))
        return 1;
      if (lex->having && (lex->having)->walk(processor, walk_subquery,
                                             argument))
        return 1;
756

Marko Mäkelä's avatar
Marko Mäkelä committed
757 758 759
      if (walk_items_for_table_list(processor, walk_subquery, argument,
                                    *lex->join_list))
        return 1;
760

Marko Mäkelä's avatar
Marko Mäkelä committed
761
      while (Item *item= li++)
762 763 764 765
      {
        if (item->walk(processor, walk_subquery, argument))
          return 1;
      }
766
      for (order= lex->order_list.first ; order; order= order->next)
767 768 769 770
      {
        if ((*order->item)->walk(processor, walk_subquery, argument))
          return 1;
      }
771
      for (order= lex->group_list.first ; order; order= order->next)
772 773 774 775 776 777 778 779 780 781
      {
        if ((*order->item)->walk(processor, walk_subquery, argument))
          return 1;
      }
    }
  }
  return (this->*processor)(argument);
}


782
bool Item_subselect::exec()
783
{
784
  subselect_engine *org_engine= engine;
785
  DBUG_ENTER("Item_subselect::exec");
786
  DBUG_ASSERT(fixed());
787
  DBUG_ASSERT(thd);
788
  DBUG_ASSERT(!eliminated);
unknown's avatar
unknown committed
789

790
  DBUG_EXECUTE_IF("Item_subselect",
791 792 793 794 795
    Item::Print print(this,
      enum_query_type(QT_TO_SYSTEM_CHARSET |
        QT_WITHOUT_INTRODUCERS));

    push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE,
796 797
                        ER_UNKNOWN_ERROR, "DBUG: Item_subselect::exec %.*b",
                        print.length(),print.ptr());
798
  );
799 800 801 802
  /*
    Do not execute subselect in case of a fatal error
    or if the query has been killed.
  */
803
  if (unlikely(thd->is_error() || thd->killed))
804
    DBUG_RETURN(true);
805

Sergey Glukhov's avatar
Sergey Glukhov committed
806
  DBUG_ASSERT(!thd->lex->context_analysis_only);
807 808 809 810
  /*
    Simulate a failure in sub-query execution. Used to test e.g.
    out of memory or query being killed conditions.
  */
811
  DBUG_EXECUTE_IF("subselect_exec_fail", DBUG_RETURN(true););
unknown's avatar
unknown committed
812

813
  bool res= engine->exec();
unknown's avatar
unknown committed
814

unknown's avatar
unknown committed
815 816 817
#ifndef DBUG_OFF
  ++exec_counter;
#endif
818
  if (engine != org_engine)
819
  {
820 821 822 823 824 825
    /*
      If the subquery engine changed during execution due to lazy subquery
      optimization, or because the original engine found a more efficient other
      engine, re-execute the subquery with the new engine.
    */
    DBUG_RETURN(exec());
826
  }
827
  DBUG_RETURN(res);
828 829
}

830

unknown's avatar
unknown committed
831 832
void Item_subselect::get_cache_parameters(List<Item> &parameters)
{
unknown's avatar
unknown committed
833 834 835 836 837 838
  Collect_deps_prm prm= {&parameters,      // parameters
    unit->first_select()->nest_level_base, // nest_level_base
    0,                                     // count
    unit->first_select()->nest_level,      // nest_level
    TRUE                                   // collect
  };
839
  walk(&Item::collect_outer_ref_processor, TRUE, &prm);
unknown's avatar
unknown committed
840 841
}

Sergey Petrunya's avatar
Sergey Petrunya committed
842 843 844 845
int Item_in_subselect::optimize(double *out_rows, double *cost)
{
  int res;
  DBUG_ENTER("Item_in_subselect::optimize");
846
  DBUG_ASSERT(fixed());
Sergey Petrunya's avatar
Sergey Petrunya committed
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878
  SELECT_LEX *save_select= thd->lex->current_select;
  JOIN *join= unit->first_select()->join;

  thd->lex->current_select= join->select_lex;
  if ((res= join->optimize()))
    DBUG_RETURN(res);

  /* Calculate #rows and cost of join execution */
  join->get_partial_cost_and_fanout(join->table_count - join->const_tables, 
                                    table_map(-1),
                                    cost, out_rows);

  /*
    Adjust join output cardinality. There can be these cases:
    - Have no GROUP BY and no aggregate funcs: we won't get into this 
      function because such join will be processed as a merged semi-join 
      (TODO: does it really mean we don't need to handle such cases here at 
       all? put ASSERT)
    - Have no GROUP BY but have aggregate funcs: output is 1 record.
    - Have GROUP BY and have (or not) aggregate funcs:  need to adjust output 
      cardinality.
  */
  thd->lex->current_select= save_select;
  if (!join->group_list && !join->group_optimized_away &&
      join->tmp_table_param.sum_func_count)
  {
    DBUG_PRINT("info",("Materialized join will have only 1 row (it has "
                       "aggregates but no GROUP BY"));
    *out_rows= 1;
  }
  
  /* Now with grouping */
879
  if (join->group_list_for_estimates)
Sergey Petrunya's avatar
Sergey Petrunya committed
880 881 882 883 884 885 886 887 888 889
  {
    DBUG_PRINT("info",("Materialized join has grouping, trying to estimate it"));
    double output_rows= get_post_group_estimate(join, *out_rows);
    DBUG_PRINT("info",("Got value of %g", output_rows));
    *out_rows= output_rows;
  }

  DBUG_RETURN(res);

}
Sergey Petrunya's avatar
Sergey Petrunya committed
890 891


unknown's avatar
unknown committed
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
/**
  Check if an expression cache is needed for this subquery

  @param thd             Thread handle

  @details
  The function checks whether a cache is needed for a subquery and whether
  the result of the subquery can be put in cache.

  @retval TRUE  cache is needed
  @retval FALSE otherwise
*/

bool Item_subselect::expr_cache_is_needed(THD *thd)
{
unknown's avatar
unknown committed
907
  return ((engine->uncacheable() & UNCACHEABLE_DEPENDENT) &&
unknown's avatar
unknown committed
908 909 910
          engine->cols() == 1 &&
          optimizer_flag(thd, OPTIMIZER_SWITCH_SUBQUERY_CACHE) &&
          !(engine->uncacheable() & (UNCACHEABLE_RAND |
911 912
                                     UNCACHEABLE_SIDEEFFECT)) &&
          !with_recursive_reference);
unknown's avatar
unknown committed
913 914 915
}


916 917 918 919 920 921 922 923 924
/**
  Check if the left IN argument contains NULL values.

  @retval TRUE  there are NULLs
  @retval FALSE otherwise
*/

inline bool Item_in_subselect::left_expr_has_null()
{
925
  return (*(optimizer->get_cache()))->null_value_inside;
926 927 928
}


unknown's avatar
unknown committed
929 930 931 932 933 934 935 936 937 938 939
/**
  Check if an expression cache is needed for this subquery

  @param thd             Thread handle

  @details
  The function checks whether a cache is needed for a subquery and whether
  the result of the subquery can be put in cache.

  @note
  This method allows many columns in the subquery because it is supported by
940
  Item_in_optimizer and result of the IN subquery will be scalar in this
unknown's avatar
unknown committed
941 942 943 944 945 946 947 948
  case.

  @retval TRUE  cache is needed
  @retval FALSE otherwise
*/

bool Item_in_subselect::expr_cache_is_needed(THD *thd)
{
unknown's avatar
unknown committed
949
  return (optimizer_flag(thd, OPTIMIZER_SWITCH_SUBQUERY_CACHE) &&
unknown's avatar
unknown committed
950
          !(engine->uncacheable() & (UNCACHEABLE_RAND |
951 952
                                     UNCACHEABLE_SIDEEFFECT)) &&
          !with_recursive_reference);
unknown's avatar
unknown committed
953 954 955
}


956 957 958 959 960 961 962
/*
  Compute the IN predicate if the left operand's cache changed.
*/

bool Item_in_subselect::exec()
{
  DBUG_ENTER("Item_in_subselect::exec");
963
  DBUG_ASSERT(fixed());
964 965
  DBUG_ASSERT(thd);

966 967 968 969 970 971 972 973 974 975 976 977
  /*
    Initialize the cache of the left predicate operand. This has to be done as
    late as now, because Cached_item directly contains a resolved field (not
    an item, and in some cases (when temp tables are created), these fields
    end up pointing to the wrong field. One solution is to change Cached_item
    to not resolve its field upon creation, but to resolve it dynamically
    from a given Item_ref object.
    TODO: the cache should be applied conditionally based on:
    - rules - e.g. only if the left operand is known to be ordered, and/or
    - on a cost-based basis, that takes into account the cost of a cache
      lookup, the cache hit rate, and the savings per cache hit.
  */
unknown's avatar
unknown committed
978
  if (!left_expr_cache && (test_strategy(SUBS_MATERIALIZATION)))
979 980
    init_left_expr_cache();

981 982 983 984 985 986 987 988
  /*
    If the new left operand is already in the cache, reuse the old result.
    Use the cached result only if this is not the first execution of IN
    because the cache is not valid for the first execution.
  */
  if (!first_execution && left_expr_cache &&
      test_if_item_cache_changed(*left_expr_cache) < 0)
    DBUG_RETURN(FALSE);
989 990 991 992 993 994 995 996 997 998

  /*
    The exec() method below updates item::value, and item::null_value, thus if
    we don't call it, the next call to item::val_int() will return whatever
    result was computed by its previous call.
  */
  DBUG_RETURN(Item_subselect::exec());
}


999
Item::Type Item_subselect::type() const
1000 1001 1002 1003
{
  return SUBSELECT_ITEM;
}

unknown's avatar
unknown committed
1004

1005
bool Item_subselect::fix_length_and_dec()
1006
{
1007 1008 1009
  if (engine->fix_length_and_dec(0))
    return TRUE;
  return FALSE;
1010
}
unknown's avatar
unknown committed
1011

unknown's avatar
unknown committed
1012

1013
table_map Item_subselect::used_tables() const
unknown's avatar
unknown committed
1014
{
1015 1016
  return (table_map) ((engine->uncacheable() & ~UNCACHEABLE_EXPLAIN)? 
                      used_tables_cache : 0L);
unknown's avatar
unknown committed
1017 1018
}

unknown's avatar
merge  
unknown committed
1019

1020 1021
bool Item_subselect::const_item() const
{
1022
  DBUG_ASSERT(thd);
Igor Babaev's avatar
Igor Babaev committed
1023
  return (thd->lex->context_analysis_only || with_recursive_reference ?
unknown's avatar
unknown committed
1024 1025
          FALSE :
          forced_const || const_item_cache);
1026 1027
}

1028
Item *Item_subselect::get_tmp_table_item(THD *thd_arg)
unknown's avatar
unknown committed
1029
{
1030
  if (!with_sum_func() && !const_item())
1031 1032 1033 1034
  {
    auto item_field=
        new (thd->mem_root) Item_field(thd_arg, result_field);
    if (item_field)
1035
      item_field->set_refers_to_temp_table();
1036 1037
    return item_field;
  }
1038
  return copy_or_same(thd_arg);
unknown's avatar
unknown committed
1039
}
unknown's avatar
merge  
unknown committed
1040

1041 1042
void Item_subselect::update_used_tables()
{
1043
  if (!forced_const)
1044
  {
1045
    recalc_used_tables(parent_select, FALSE);
Igor Babaev's avatar
Igor Babaev committed
1046
    if (!(engine->uncacheable() & ~UNCACHEABLE_EXPLAIN))
1047 1048
    {
      // did all used tables become static?
Igor Babaev's avatar
Igor Babaev committed
1049 1050
      if (!(used_tables_cache & ~engine->upper_select_const_tables()) &&
          ! with_recursive_reference)
1051 1052
        const_item_cache= 1;
    }
1053 1054 1055
  }
}

unknown's avatar
unknown committed
1056

1057
void Item_subselect::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
1058
{
1059
  if (query_type & QT_ITEM_SUBSELECT_ID_ONLY)
1060
  {
Michael Widenius's avatar
Michael Widenius committed
1061
    str->append(STRING_WITH_LEN("(subquery#"));
1062
    if (unit && unit->first_select())
1063 1064
    {
      char buf[64];
Monty's avatar
Monty committed
1065 1066 1067 1068
      size_t length= (size_t)
        (longlong10_to_str(unit->first_select()->select_number, buf, 10) -
         buf);
      str->append(buf, length);
1069 1070
    }
    else
Monty's avatar
Monty committed
1071 1072 1073 1074
    {
      // TODO: Explain what exactly does this mean?
      str->append(NULL_clex_str);
    }
1075

Monty's avatar
Monty committed
1076
    str->append(')');
1077 1078
    return;
  }
1079 1080 1081 1082 1083 1084 1085
  if (engine)
  {
    str->append('(');
    engine->print(str, query_type);
    str->append(')');
  }
  else
Monty's avatar
Monty committed
1086
    str->append(STRING_WITH_LEN("(...)"));
unknown's avatar
unknown committed
1087 1088 1089
}


1090 1091
Item_singlerow_subselect::Item_singlerow_subselect(THD *thd, st_select_lex *select_lex):
  Item_subselect(thd), value(0)
unknown's avatar
unknown committed
1092
{
unknown's avatar
unknown committed
1093
  DBUG_ENTER("Item_singlerow_subselect::Item_singlerow_subselect");
1094
  init(select_lex, new (thd->mem_root) select_singlerow_subselect(thd, this));
1095
  set_maybe_null();
1096
  max_columns= UINT_MAX;
unknown's avatar
unknown committed
1097
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
1098 1099
}

1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
st_select_lex *
Item_singlerow_subselect::invalidate_and_restore_select_lex()
{
  DBUG_ENTER("Item_singlerow_subselect::invalidate_and_restore_select_lex");
  st_select_lex *result= get_select_lex();

  DBUG_ASSERT(result);

  /*
    This code restore the parse tree in it's state before the execution of
    Item_singlerow_subselect::Item_singlerow_subselect(),
    and in particular decouples this object from the SELECT_LEX,
    so that the SELECT_LEX can be used with a different flavor
    or Item_subselect instead, as part of query rewriting.
  */
  unit->item= NULL;

  DBUG_RETURN(result);
}

1120
Item_maxmin_subselect::Item_maxmin_subselect(THD *thd,
unknown's avatar
unknown committed
1121
                                             Item_subselect *parent,
1122
					     st_select_lex *select_lex,
1123 1124
					     bool max_arg):
  Item_singlerow_subselect(thd), was_values(TRUE)
1125 1126
{
  DBUG_ENTER("Item_maxmin_subselect::Item_maxmin_subselect");
unknown's avatar
unknown committed
1127
  max= max_arg;
unknown's avatar
unknown committed
1128
  init(select_lex,
1129
       new (thd->mem_root) select_max_min_finder_subselect(thd,
1130
             this, max_arg, parent->substype() == Item_subselect::ALL_SUBS));
1131
  max_columns= 1;
1132
  set_maybe_null();
1133
  max_columns= 1;
1134 1135 1136 1137 1138 1139

  /*
    Following information was collected during performing fix_fields()
    of Items belonged to subquery, which will be not repeated
  */
  used_tables_cache= parent->get_used_tables_cache();
1140
  const_item_cache= parent->const_item();
1141

1142 1143 1144
  DBUG_VOID_RETURN;
}

1145 1146
void Item_maxmin_subselect::cleanup()
{
unknown's avatar
unknown committed
1147 1148 1149
  DBUG_ENTER("Item_maxmin_subselect::cleanup");
  Item_singlerow_subselect::cleanup();

1150
  /*
unknown's avatar
unknown committed
1151
    By default it is TRUE to avoid TRUE reporting by
1152 1153 1154
    Item_func_not_all/Item_func_nop_all if this item was never called.

    Engine exec() set it to FALSE by reset_value_registration() call.
unknown's avatar
unknown committed
1155 1156
    select_max_min_finder_subselect::send_data() set it back to TRUE if some
    value will be found.
1157 1158
  */
  was_values= TRUE;
unknown's avatar
unknown committed
1159
  DBUG_VOID_RETURN;
1160 1161 1162
}


1163
void Item_maxmin_subselect::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
1164
{
1165
  str->append(max?"<max>":"<min>", 5);
1166
  Item_singlerow_subselect::print(str, query_type);
unknown's avatar
unknown committed
1167 1168
}

1169

unknown's avatar
unknown committed
1170 1171
void Item_maxmin_subselect::no_rows_in_result()
{
unknown's avatar
unknown committed
1172 1173 1174 1175 1176 1177 1178 1179
  /*
    Subquery predicates outside of the SELECT list must be evaluated in order
    to possibly filter the special result row generated for implicit grouping
    if the subquery is in the HAVING clause.
    If the predicate is constant, we need its actual value in the only result
    row for queries with implicit grouping.
  */
  if (parsing_place != SELECT_LIST || const_item())
unknown's avatar
unknown committed
1180
    return;
1181
  value= get_cache(thd);
unknown's avatar
unknown committed
1182 1183 1184 1185 1186 1187
  null_value= 0;
  was_values= 0;
  make_const();
}


unknown's avatar
unknown committed
1188 1189
void Item_singlerow_subselect::no_rows_in_result()
{
unknown's avatar
unknown committed
1190 1191 1192 1193 1194 1195 1196 1197
  /*
    Subquery predicates outside of the SELECT list must be evaluated in order
    to possibly filter the special result row generated for implicit grouping
    if the subquery is in the HAVING clause.
    If the predicate is constant, we need its actual value in the only result
    row for queries with implicit grouping.
  */
  if (parsing_place != SELECT_LIST || const_item())
unknown's avatar
unknown committed
1198
    return;
1199
  value= get_cache(thd);
unknown's avatar
unknown committed
1200 1201 1202 1203 1204
  reset();
  make_const();
}


unknown's avatar
unknown committed
1205
void Item_singlerow_subselect::reset()
1206
{
1207
  Item_subselect::reset();
1208
  if (value)
unknown's avatar
unknown committed
1209 1210 1211 1212
  {
    for(uint i= 0; i < engine->cols(); i++)
      row[i]->set_null();
  }
1213 1214
}

1215

unknown's avatar
unknown committed
1216 1217
/**
  @todo
Ian Gilfillan's avatar
Ian Gilfillan committed
1218 1219
  - We can't change name of Item_field or Item_ref, because it will
  prevent its correct resolving, but we should save name of
unknown's avatar
unknown committed
1220 1221 1222
  removed item => we do not make optimization if top item of
  list is field or reference.
  - switch off this optimization for prepare statement,
Ian Gilfillan's avatar
Ian Gilfillan committed
1223
  because we do not rollback these changes.
unknown's avatar
unknown committed
1224
  Make rollback for it, or special name resolving mode in 5.0.
unknown's avatar
unknown committed
1225 1226 1227 1228

  @param join  Join object of the subquery (i.e. 'child' join).

  @retval false  The subquery was transformed
unknown's avatar
unknown committed
1229
*/
unknown's avatar
unknown committed
1230
bool
unknown's avatar
unknown committed
1231
Item_singlerow_subselect::select_transformer(JOIN *join)
1232
{
1233
  DBUG_ENTER("Item_singlerow_subselect::select_transformer");
unknown's avatar
unknown committed
1234
  if (changed)
unknown's avatar
unknown committed
1235
    DBUG_RETURN(false);
1236
  DBUG_ASSERT(join->thd == thd);
1237

1238
  SELECT_LEX *select_lex= join->select_lex;
1239 1240
  Query_arena *arena, backup;
  arena= thd->activate_stmt_arena_if_needed(&backup);
1241

1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
  auto need_to_pull_out_item = [](enum_parsing_place context_analysis_place,
                                  Item *item) {
    return
      !item->with_sum_func() &&
      /*
        We can't change name of Item_field or Item_ref, because it will
        prevent its correct resolving, but we should save name of
        removed item => we do not make optimization if top item of
        list is field or reference.
        TODO: solve above problem
      */
      item->type() != FIELD_ITEM && item->type() != REF_ITEM &&
      /*
        The item can be pulled out to upper level in case it doesn't represent
        the constant in the clause 'ORDER/GROUP BY (constant)'.
      */
      !((item->is_order_clause_position() ||
         item->is_stored_routine_parameter()) &&
        (context_analysis_place == IN_ORDER_BY ||
         context_analysis_place == IN_GROUP_BY)
       );
  };

1265
  if (!select_lex->master_unit()->is_unit_op() &&
1266
      !select_lex->table_list.elements &&
unknown's avatar
unknown committed
1267
      select_lex->item_list.elements == 1 &&
1268
      !join->conds && !join->having &&
1269 1270 1271 1272
      need_to_pull_out_item(
        join->select_lex->outer_select()->context_analysis_place,
        select_lex->item_list.head()) &&
      thd->stmt_arena->state != Query_arena::STMT_INITIALIZED_FOR_SP)
1273 1274
  {
    have_to_be_excluded= 1;
unknown's avatar
unknown committed
1275
    if (thd->lex->describe)
1276 1277
    {
      char warn_buff[MYSQL_ERRMSG_SIZE];
1278 1279
      sprintf(warn_buff, ER_THD(thd, ER_SELECT_REDUCED),
              select_lex->select_number);
1280
      push_warning(thd, Sql_condition::WARN_LEVEL_NOTE,
1281 1282 1283
		   ER_SELECT_REDUCED, warn_buff);
    }
    substitution= select_lex->item_list.head();
unknown's avatar
unknown committed
1284
    /*
unknown's avatar
unknown committed
1285
      as far as we moved content to upper level we have to fix dependences & Co
unknown's avatar
unknown committed
1286
    */
1287 1288
    substitution->fix_after_pullout(select_lex->outer_select(),
                                    &substitution, TRUE);
1289
  }
1290 1291
  if (arena)
    thd->restore_active_arena(arena, &backup);
unknown's avatar
unknown committed
1292
  DBUG_RETURN(false);
1293 1294
}

unknown's avatar
unknown committed
1295

unknown's avatar
unknown committed
1296
void Item_singlerow_subselect::store(uint i, Item *item)
unknown's avatar
unknown committed
1297
{
1298
  row[i]->store(item);
1299
  row[i]->cache_value();
unknown's avatar
unknown committed
1300 1301
}

1302 1303 1304
const Type_handler *Item_singlerow_subselect::type_handler() const
{
  return engine->type_handler();
1305 1306
}

1307
bool Item_singlerow_subselect::fix_length_and_dec()
1308
{
1309 1310
  if ((max_columns= engine->cols()) == 1)
  {
1311 1312
    if (engine->fix_length_and_dec(row= &value))
      return TRUE;
1313 1314
  }
  else
1315
  {
1316
    if (!(row= current_thd->alloc<Item_cache*>(max_columns)) ||
1317 1318
        engine->fix_length_and_dec(row))
      return TRUE;
1319
    value= *row;
1320
  }
1321
  unsigned_flag= value->unsigned_flag;
1322
  /*
1323
    If the subquery always returns a row, like "(SELECT subq_value)"
1324
    then its NULLability is the same as subq_value's NULLability.
1325
  */
1326
  if (engine->always_returns_one_row())
1327
    set_maybe_null(engine->may_be_null());
unknown's avatar
unknown committed
1328 1329 1330
  else
  {
    for (uint i= 0; i < max_columns; i++)
1331
      row[i]->set_maybe_null();
unknown's avatar
unknown committed
1332
  }
1333
  return FALSE;
1334 1335
}

unknown's avatar
unknown committed
1336

1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356

/*
  @brief
     Check if we can guarantee that this engine will always produce exactly one
     row.

  @detail
    Check if the subquery is just

      (SELECT value)

    Then we can guarantee we always return one row.
    Selecting from tables may produce more than one row.
    HAVING, WHERE or ORDER BY/LIMIT clauses may cause no rows to be produced.
*/

bool subselect_single_select_engine::always_returns_one_row() const
{
  st_select_lex *params= select_lex->master_unit()->global_parameters();
  return no_tables() &&
1357 1358
         !params->limit_params.select_limit &&
         !params->limit_params.offset_limit &&
1359 1360 1361 1362
         !select_lex->where &&
         !select_lex->having;
}

unknown's avatar
unknown committed
1363 1364 1365 1366 1367 1368 1369 1370
/**
  Add an expression cache for this subquery if it is needed

  @param thd_arg         Thread handle

  @details
  The function checks whether an expression cache is needed for this item
  and if if so wraps the item into an item of the class
1371
  Item_cache_wrapper with an appropriate expression cache set up there.
unknown's avatar
unknown committed
1372 1373 1374 1375 1376 1377 1378 1379 1380

  @note
  used from Item::transform()

  @return
  new wrapper item if an expression cache is needed,
  this item - otherwise
*/

1381 1382
Item* Item_singlerow_subselect::expr_cache_insert_transformer(THD *tmp_thd,
                                                              uchar *unused)
unknown's avatar
unknown committed
1383 1384 1385
{
  DBUG_ENTER("Item_singlerow_subselect::expr_cache_insert_transformer");

1386 1387
  DBUG_ASSERT(thd == tmp_thd);

1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
  /*
    Do not create subquery cache if the subquery was eliminated.
    The optimizer may eliminate subquery items (see
    eliminate_subselect_processor). However it does not update
    all query's data structures, so the eliminated item may be
    still reachable.
  */
  if (eliminated)
    DBUG_RETURN(this);

1398 1399 1400
  if (expr_cache)
    DBUG_RETURN(expr_cache);

1401 1402
  if (expr_cache_is_needed(tmp_thd) &&
      (expr_cache= set_expr_cache(tmp_thd)))
1403
  {
1404
    init_expr_cache_tracker(tmp_thd);
1405
    DBUG_RETURN(expr_cache);
1406
  }
unknown's avatar
unknown committed
1407 1408 1409 1410
  DBUG_RETURN(this);
}


1411
uint Item_singlerow_subselect::cols() const
unknown's avatar
unknown committed
1412
{
1413 1414 1415
  return engine->cols();
}

unknown's avatar
unknown committed
1416
bool Item_singlerow_subselect::check_cols(uint c)
1417 1418 1419
{
  if (c != engine->cols())
  {
unknown's avatar
unknown committed
1420
    my_error(ER_OPERAND_COLUMNS, MYF(0), c);
1421 1422 1423 1424 1425
    return 1;
  }
  return 0;
}

unknown's avatar
unknown committed
1426
bool Item_singlerow_subselect::null_inside()
1427 1428 1429 1430 1431 1432 1433 1434 1435
{
  for (uint i= 0; i < max_columns ; i++)
  {
    if (row[i]->null_value)
      return 1;
  }
  return 0;
}

unknown's avatar
unknown committed
1436
void Item_singlerow_subselect::bring_value()
1437
{
1438
  if (!exec() && assigned())
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
  {
    null_value= true;
    for (uint i= 0; i < max_columns ; i++)
    {
      if (!row[i]->null_value)
      {
        null_value= false;
        return;
      }
    }
  }
1450 1451
  else
    reset();
unknown's avatar
unknown committed
1452 1453
}

1454
double Item_singlerow_subselect::val_real()
unknown's avatar
unknown committed
1455
{
1456
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1457 1458
  if (forced_const)
    return value->val_real();
1459
  if (!exec() && !value->null_value)
1460
  {
1461
    null_value= FALSE;
1462
    return value->val_real();
1463 1464
  }
  else
unknown's avatar
unknown committed
1465
  {
1466
    reset();
unknown's avatar
unknown committed
1467
    return 0;
unknown's avatar
unknown committed
1468
  }
unknown's avatar
unknown committed
1469 1470
}

1471
longlong Item_singlerow_subselect::val_int()
unknown's avatar
unknown committed
1472
{
1473
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1474
  if (forced_const)
1475 1476 1477 1478 1479
  {
    longlong val= value->val_int();
    null_value= value->null_value;
    return val;
  }
1480
  if (!exec() && !value->null_value)
1481
  {
1482
    null_value= FALSE;
1483 1484 1485
    return value->val_int();
  }
  else
unknown's avatar
unknown committed
1486
  {
1487
    reset();
1488
    DBUG_ASSERT(null_value);
unknown's avatar
unknown committed
1489
    return 0;
unknown's avatar
unknown committed
1490
  }
unknown's avatar
unknown committed
1491 1492
}

unknown's avatar
unknown committed
1493
String *Item_singlerow_subselect::val_str(String *str)
unknown's avatar
unknown committed
1494
{
1495
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1496
  if (forced_const)
1497 1498 1499 1500 1501
  {
    String *res= value->val_str(str);
    null_value= value->null_value;
    return res;
  }
1502
  if (!exec() && !value->null_value)
1503
  {
1504
    null_value= FALSE;
1505 1506 1507
    return value->val_str(str);
  }
  else
unknown's avatar
unknown committed
1508
  {
1509
    reset();
1510
    DBUG_ASSERT(null_value);
unknown's avatar
unknown committed
1511
    return 0;
unknown's avatar
unknown committed
1512
  }
unknown's avatar
unknown committed
1513 1514
}

unknown's avatar
unknown committed
1515

1516 1517
bool Item_singlerow_subselect::val_native(THD *thd, Native *to)
{
1518
  DBUG_ASSERT(fixed());
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
  if (forced_const)
    return value->val_native(thd, to);
  if (!exec() && !value->null_value)
  {
    null_value= false;
    return value->val_native(thd, to);
  }
  else
  {
    reset();
    return true;
  }
}


unknown's avatar
unknown committed
1534 1535
my_decimal *Item_singlerow_subselect::val_decimal(my_decimal *decimal_value)
{
1536
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1537
  if (forced_const)
1538 1539 1540 1541 1542
  {
    my_decimal *val= value->val_decimal(decimal_value);
    null_value= value->null_value;
    return val;
  }
1543
  if (!exec() && !value->null_value)
unknown's avatar
unknown committed
1544
  {
1545
    null_value= FALSE;
unknown's avatar
unknown committed
1546 1547 1548 1549 1550
    return value->val_decimal(decimal_value);
  }
  else
  {
    reset();
1551
    DBUG_ASSERT(null_value);
unknown's avatar
unknown committed
1552 1553 1554 1555 1556 1557 1558
    return 0;
  }
}


bool Item_singlerow_subselect::val_bool()
{
1559
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1560
  if (forced_const)
1561 1562 1563 1564 1565
  {
    bool val= value->val_bool();
    null_value= value->null_value;
    return val;
  }
1566
  if (!exec() && !value->null_value)
unknown's avatar
unknown committed
1567
  {
1568
    null_value= FALSE;
unknown's avatar
unknown committed
1569 1570 1571 1572 1573
    return value->val_bool();
  }
  else
  {
    reset();
1574
    DBUG_ASSERT(null_value);
unknown's avatar
unknown committed
1575 1576 1577 1578 1579
    return 0;
  }
}


1580
bool Item_singlerow_subselect::get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate)
1581
{
1582
  DBUG_ASSERT(fixed());
1583
  if (forced_const)
1584
  {
Marko Mäkelä's avatar
Marko Mäkelä committed
1585
    bool val= value->get_date(thd, ltime, fuzzydate);
1586 1587 1588
    null_value= value->null_value;
    return val;
  }
1589 1590 1591
  if (!exec() && !value->null_value)
  {
    null_value= FALSE;
1592
    return value->get_date(thd, ltime, fuzzydate);
1593 1594 1595 1596
  }
  else
  {
    reset();
1597
    DBUG_ASSERT(null_value);
1598
    return 1;
1599 1600 1601 1602
  }
}


1603
Item_exists_subselect::Item_exists_subselect(THD *thd,
1604
                                             st_select_lex *select_lex):
1605
  Item_subselect(thd), upper_not(NULL),
unknown's avatar
unknown committed
1606
  emb_on_expr_nest(NULL), optimizer(0), exists_transformed(0)
unknown's avatar
unknown committed
1607
{
unknown's avatar
unknown committed
1608
  DBUG_ENTER("Item_exists_subselect::Item_exists_subselect");
1609

1610
  init(select_lex, new (thd->mem_root) select_exists_subselect(thd, this));
1611 1612
  select_lex->distinct= 1;
  select_lex->master_unit()->distinct= 1;
unknown's avatar
unknown committed
1613
  max_columns= UINT_MAX;
1614
  null_value= FALSE; //can't be NULL
1615
  base_flags&= ~item_base_t::MAYBE_NULL; //can't be NULL
unknown's avatar
unknown committed
1616
  value= 0;
unknown's avatar
unknown committed
1617 1618 1619
  DBUG_VOID_RETURN;
}

unknown's avatar
unknown committed
1620

1621
void Item_exists_subselect::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
1622
{
1623
  str->append(STRING_WITH_LEN("exists"));
1624
  Item_subselect::print(str, query_type);
unknown's avatar
unknown committed
1625 1626 1627
}


unknown's avatar
unknown committed
1628
bool Item_in_subselect::test_limit(st_select_lex_unit *unit_arg)
1629
{
1630 1631
  if (unlikely(unit_arg->fake_select_lex &&
               unit_arg->fake_select_lex->test_limit()))
1632
    return(1);
unknown's avatar
unknown committed
1633

1634
  SELECT_LEX *sl= unit_arg->first_select();
1635 1636
  for (; sl; sl= sl->next_select())
  {
1637
    if (unlikely(sl->test_limit()))
1638 1639 1640 1641 1642
      return(1);
  }
  return(0);
}

1643
Item_in_subselect::Item_in_subselect(THD *thd, Item * left_exp,
unknown's avatar
unknown committed
1644
				     st_select_lex *select_lex):
1645
  Item_exists_subselect(thd), left_expr_cache(0), first_execution(TRUE),
unknown's avatar
unknown committed
1646
  in_strategy(SUBS_NOT_TRANSFORMED),
1647
  materialization_tracker(NULL),
1648 1649 1650
  pushed_cond_guards(NULL), do_not_convert_to_sj(FALSE), is_jtbm_merged(FALSE),
  is_jtbm_const_tab(FALSE), is_flattenable_semijoin(FALSE),
  is_registered_semijoin(FALSE),
1651 1652
  upper_item(0),
  converted_from_in_predicate(FALSE)
unknown's avatar
unknown committed
1653 1654
{
  DBUG_ENTER("Item_in_subselect::Item_in_subselect");
unknown's avatar
unknown committed
1655
  DBUG_PRINT("info", ("in_strategy: %u", (uint)in_strategy));
1656

1657
  left_expr_orig= left_expr= left_exp;
1658 1659
  /* prepare to possible disassembling the item in convert_subq_to_sj() */
  if (left_exp->type() == Item::ROW_ITEM)
1660 1661
    left_expr_orig= new (thd->mem_root)
      Item_row(thd, static_cast<Item_row*>(left_exp));
1662
  func= &eq_creator;
1663
  init(select_lex, new (thd->mem_root) select_exists_subselect(thd, this));
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696
  select_lex->distinct= 1;

  /*
    If the IN subquery (xxx IN (SELECT ...) is a join without grouping,
    we don't need duplicates from the tables it is joining. These
    tables can be derived tables, like shown in the following
    example. In this case, it's useful to indicate that we don't need
    duplicates from them either.

    Example:
     col IN (SELECT ...   -- this is the select_lex
              FROM
                (SELECT ... FROM t1) AS t1, -- child1, first_inner_init().
                (SELECT ... FROM t2) AS t2, -- child2
              WHERE
                ...
            )

     We don't need duplicates from either child1 or child2.
     We only indicate this to child1 (select_lex->first_inner_unit()), as that
     catches most of practically important use cases.

     (The check for item==NULL is to make sure the subquery is a derived table
     and not any other kind of subquery like another IN (SELECT ...) or a scalar-
     context (SELECT 'foo'))
  */

  select_lex->master_unit()->distinct= 1;
  if (!select_lex->with_sum_func &&
      select_lex->first_inner_unit() &&
      select_lex->first_inner_unit()->item == NULL)
    select_lex->first_inner_unit()->distinct= 1;

unknown's avatar
unknown committed
1697
  max_columns= UINT_MAX;
1698
  set_maybe_null();
1699
  reset();
unknown's avatar
unknown committed
1700
  //if test_limit will fail then error will be reported to client
1701
  test_limit(select_lex->master_unit());
unknown's avatar
unknown committed
1702 1703 1704
  DBUG_VOID_RETURN;
}

1705 1706 1707 1708 1709
int Item_in_subselect::get_identifier()
{
  return engine->get_identifier();
}

1710
Item_allany_subselect::Item_allany_subselect(THD *thd, Item * left_exp,
1711
                                             chooser_compare_func_creator fc,
unknown's avatar
unknown committed
1712
					     st_select_lex *select_lex,
1713 1714
					     bool all_arg):
  Item_in_subselect(thd), func_creator(fc), all(all_arg)
unknown's avatar
unknown committed
1715
{
1716
  DBUG_ENTER("Item_allany_subselect::Item_allany_subselect");
1717
  left_expr_orig= left_expr= left_exp;
1718 1719
  /* prepare to possible disassembling the item in convert_subq_to_sj() */
  if (left_exp->type() == Item::ROW_ITEM)
1720 1721
    left_expr_orig= new (thd->mem_root)
      Item_row(thd, static_cast<Item_row*>(left_exp));
1722
  func= func_creator(all_arg);
1723
  init(select_lex, new (thd->mem_root) select_exists_subselect(thd, this));
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
  select_lex->distinct= 1;
  /*
    If this is is 'xxx IN (SELECT ...) mark that the we are only interested in
    unique values for the select
  */
  select_lex->master_unit()->distinct= 1;
  if (!select_lex->with_sum_func &&
      select_lex->first_inner_unit() &&
      select_lex->first_inner_unit()->item == NULL)
    select_lex->first_inner_unit()->distinct= 1;
unknown's avatar
unknown committed
1734
  max_columns= 1;
1735
  reset();
unknown's avatar
unknown committed
1736
  //if test_limit will fail then error will be reported to client
1737
  test_limit(select_lex->master_unit());
unknown's avatar
unknown committed
1738
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
1739 1740
}

unknown's avatar
unknown committed
1741

1742 1743 1744 1745 1746 1747
/**
  Initialize length and decimals for EXISTS  and inherited (IN/ALL/ANY)
  subqueries
*/

void Item_exists_subselect::init_length_and_dec()
1748
{
1749 1750 1751
  decimals= 0;
  max_length= 1;
  max_columns= engine->cols();
1752 1753 1754
}


1755
bool Item_exists_subselect::fix_length_and_dec()
1756
{
1757 1758
  DBUG_ENTER("Item_exists_subselect::fix_length_and_dec");
  init_length_and_dec();
1759
  // If limit is not set or it is constant more than 1
1760 1761 1762
  if (!unit->global_parameters()->limit_params.select_limit ||
      (unit->global_parameters()->limit_params.select_limit->basic_const_item() &&
       unit->global_parameters()->limit_params.select_limit->val_int() > 1))
1763 1764
  {
    /*
1765 1766 1767 1768 1769 1770
       We need only 1 row to determine existence (i.e. any EXISTS that is not
       an IN always requires LIMIT 1)
     */
    Item *item= new (thd->mem_root) Item_int(thd, (int32) 1);
    if (!item)
      DBUG_RETURN(TRUE);
1771
    thd->change_item_tree(&unit->global_parameters()->limit_params.select_limit,
1772
                          item);
1773
    unit->global_parameters()->limit_params.explicit_limit= 1; // we set the limit
1774 1775
    DBUG_PRINT("info", ("Set limit to 1"));
  }
1776
  DBUG_RETURN(FALSE);
1777 1778
}

1779

1780
bool Item_in_subselect::fix_length_and_dec()
1781 1782
{
  DBUG_ENTER("Item_in_subselect::fix_length_and_dec");
1783 1784 1785 1786 1787
  init_length_and_dec();
  /*
    Unlike Item_exists_subselect, LIMIT 1 is set later for
    Item_in_subselect, depending on the chosen strategy.
  */
1788
  DBUG_RETURN(FALSE);
1789 1790
}

unknown's avatar
unknown committed
1791 1792 1793 1794 1795 1796 1797 1798 1799

/**
  Add an expression cache for this subquery if it is needed

  @param thd_arg         Thread handle

  @details
  The function checks whether an expression cache is needed for this item
  and if if so wraps the item into an item of the class
1800
  Item_cache_wrapper with an appropriate expression cache set up there.
unknown's avatar
unknown committed
1801 1802 1803 1804 1805 1806 1807 1808 1809

  @note
  used from Item::transform()

  @return
  new wrapper item if an expression cache is needed,
  this item - otherwise
*/

1810 1811
Item* Item_exists_subselect::expr_cache_insert_transformer(THD *tmp_thd,
                                                           uchar *unused)
unknown's avatar
unknown committed
1812 1813
{
  DBUG_ENTER("Item_exists_subselect::expr_cache_insert_transformer");
1814
  DBUG_ASSERT(thd == tmp_thd);
unknown's avatar
unknown committed
1815

1816 1817 1818
  if (expr_cache)
    DBUG_RETURN(expr_cache);

1819 1820
  if (substype() == EXISTS_SUBS && expr_cache_is_needed(tmp_thd) &&
      (expr_cache= set_expr_cache(tmp_thd)))
1821
  {
1822
    init_expr_cache_tracker(tmp_thd);
1823
    DBUG_RETURN(expr_cache);
1824
  }
unknown's avatar
unknown committed
1825 1826 1827 1828
  DBUG_RETURN(this);
}


unknown's avatar
unknown committed
1829 1830
void Item_exists_subselect::no_rows_in_result()
{
unknown's avatar
unknown committed
1831 1832 1833 1834 1835 1836 1837 1838
  /*
    Subquery predicates outside of the SELECT list must be evaluated in order
    to possibly filter the special result row generated for implicit grouping
    if the subquery is in the HAVING clause.
    If the predicate is constant, we need its actual value in the only result
    row for queries with implicit grouping.
  */
  if (parsing_place != SELECT_LIST || const_item())
unknown's avatar
unknown committed
1839
    return;
unknown's avatar
unknown committed
1840 1841 1842 1843 1844
  value= 0;
  null_value= 0;
  make_const();
}

1845
double Item_exists_subselect::val_real()
unknown's avatar
unknown committed
1846
{
1847
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1848
  if (!forced_const && exec())
unknown's avatar
unknown committed
1849
  {
1850
    reset();
unknown's avatar
unknown committed
1851
    return 0;
unknown's avatar
unknown committed
1852
  }
unknown's avatar
unknown committed
1853 1854 1855
  return (double) value;
}

1856
longlong Item_exists_subselect::val_int()
unknown's avatar
unknown committed
1857
{
1858
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1859
  if (!forced_const && exec())
unknown's avatar
unknown committed
1860
  {
1861
    reset();
unknown's avatar
unknown committed
1862
    return 0;
unknown's avatar
unknown committed
1863
  }
unknown's avatar
unknown committed
1864 1865 1866
  return value;
}

1867 1868 1869 1870 1871

/**
  Return the result of EXISTS as a string value

  Converts the true/false result into a string value.
Ian Gilfillan's avatar
Ian Gilfillan committed
1872
  Note that currently this cannot be NULL, so if the query execution fails
1873 1874 1875 1876 1877 1878 1879 1880
  it will return 0.

  @param decimal_value[out]    buffer to hold the resulting string value
  @retval                      Pointer to the converted string.
                               Can't be a NULL pointer, as currently
                               EXISTS cannot return NULL.
*/

unknown's avatar
unknown committed
1881 1882
String *Item_exists_subselect::val_str(String *str)
{
1883
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1884
  if (!forced_const && exec())
1885
    reset();
unknown's avatar
unknown committed
1886
  str->set((ulonglong)value,&my_charset_bin);
1887 1888 1889
  return str;
}

unknown's avatar
unknown committed
1890

1891 1892 1893 1894
/**
  Return the result of EXISTS as a decimal value

  Converts the true/false result into a decimal value.
Ian Gilfillan's avatar
Ian Gilfillan committed
1895
  Note that currently this cannot be NULL, so if the query execution fails
1896 1897 1898 1899 1900 1901 1902 1903
  it will return 0.

  @param decimal_value[out]    Buffer to hold the resulting decimal value
  @retval                      Pointer to the converted decimal.
                               Can't be a NULL pointer, as currently
                               EXISTS cannot return NULL.
*/

unknown's avatar
unknown committed
1904 1905
my_decimal *Item_exists_subselect::val_decimal(my_decimal *decimal_value)
{
1906
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1907
  if (!forced_const && exec())
unknown's avatar
unknown committed
1908 1909 1910 1911 1912 1913 1914 1915
    reset();
  int2my_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
  return decimal_value;
}


bool Item_exists_subselect::val_bool()
{
1916
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1917
  if (!forced_const && exec())
unknown's avatar
unknown committed
1918 1919 1920 1921
  {
    reset();
    return 0;
  }
1922
  return value != 0;
unknown's avatar
unknown committed
1923 1924 1925
}


1926
double Item_in_subselect::val_real()
1927
{
unknown's avatar
unknown committed
1928 1929 1930 1931
  /*
    As far as Item_in_subselect called only from Item_in_optimizer this
    method should not be used
  */
1932
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1933 1934 1935 1936
  if (forced_const)
    return value;
  DBUG_ASSERT((engine->uncacheable() & ~UNCACHEABLE_EXPLAIN) ||
              ! engine->is_executed());
1937
  null_value= was_null= FALSE;
1938
  if (exec())
1939 1940 1941 1942 1943
  {
    reset();
    return 0;
  }
  if (was_null && !value)
1944
    null_value= TRUE;
1945 1946 1947
  return (double) value;
}

unknown's avatar
unknown committed
1948

1949
longlong Item_in_subselect::val_int()
1950
{
unknown's avatar
unknown committed
1951 1952 1953 1954 1955
  /*
    As far as Item_in_subselect called only from Item_in_optimizer this
    method should not be used
  */
  DBUG_ASSERT(0);
1956
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1957 1958 1959 1960
  if (forced_const)
    return value;
  DBUG_ASSERT((engine->uncacheable() & ~UNCACHEABLE_EXPLAIN) ||
              ! engine->is_executed());
1961
  null_value= was_null= FALSE;
1962
  if (exec())
1963 1964 1965 1966 1967
  {
    reset();
    return 0;
  }
  if (was_null && !value)
1968
    null_value= TRUE;
1969 1970 1971
  return value;
}

unknown's avatar
unknown committed
1972

1973 1974
String *Item_in_subselect::val_str(String *str)
{
unknown's avatar
unknown committed
1975 1976 1977 1978 1979
  /*
    As far as Item_in_subselect called only from Item_in_optimizer this
    method should not be used
  */
  DBUG_ASSERT(0);
1980
  DBUG_ASSERT(fixed());
unknown's avatar
unknown committed
1981 1982 1983 1984
  if (forced_const)
    goto value_is_ready;
  DBUG_ASSERT((engine->uncacheable() & ~UNCACHEABLE_EXPLAIN) ||
              ! engine->is_executed());
1985
  null_value= was_null= FALSE;
1986
  if (exec())
1987 1988 1989 1990 1991 1992
  {
    reset();
    return 0;
  }
  if (was_null && !value)
  {
1993
    null_value= TRUE;
unknown's avatar
unknown committed
1994
    return 0;
unknown's avatar
unknown committed
1995
  }
unknown's avatar
unknown committed
1996
value_is_ready:
unknown's avatar
unknown committed
1997
  str->set((ulonglong)value, &my_charset_bin);
unknown's avatar
unknown committed
1998 1999 2000
  return str;
}

unknown's avatar
unknown committed
2001

unknown's avatar
unknown committed
2002 2003
bool Item_in_subselect::val_bool()
{
2004
  DBUG_ASSERT(fixed());
2005
  if (forced_const)
2006
    return value;
unknown's avatar
unknown committed
2007
  DBUG_ASSERT((engine->uncacheable() & ~UNCACHEABLE_EXPLAIN) ||
Igor Babaev's avatar
Igor Babaev committed
2008
              ! engine->is_executed() || with_recursive_reference);
unknown's avatar
unknown committed
2009
  null_value= was_null= FALSE;
2010
  if (exec())
unknown's avatar
unknown committed
2011 2012 2013 2014 2015
  {
    reset();
    return 0;
  }
  if (was_null && !value)
2016
    null_value= TRUE;
unknown's avatar
unknown committed
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
  return value;
}

my_decimal *Item_in_subselect::val_decimal(my_decimal *decimal_value)
{
  /*
    As far as Item_in_subselect called only from Item_in_optimizer this
    method should not be used
  */
  DBUG_ASSERT(0);
unknown's avatar
unknown committed
2027 2028 2029 2030
  if (forced_const)
    goto value_is_ready;
  DBUG_ASSERT((engine->uncacheable() & ~UNCACHEABLE_EXPLAIN) ||
              ! engine->is_executed());
2031
  null_value= was_null= FALSE;
2032
  DBUG_ASSERT(fixed());
2033
  if (exec())
unknown's avatar
unknown committed
2034 2035 2036 2037 2038
  {
    reset();
    return 0;
  }
  if (was_null && !value)
2039
    null_value= TRUE;
unknown's avatar
unknown committed
2040
value_is_ready:
unknown's avatar
unknown committed
2041 2042 2043 2044 2045
  int2my_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
  return decimal_value;
}


2046
/**
2047
  Prepare a single-column IN/ALL/ANY subselect for rewriting.
2048

2049
  @param join  Join object of the subquery (i.e. 'child' join).
2050

2051
  @details
2052

2053
  Prepare a single-column subquery to be rewritten. Given the subquery.
2054

2055 2056
  If the subquery has no tables it will be turned to an expression between
  left part and SELECT list.
2057

2058 2059
  In other cases the subquery will be wrapped with  Item_in_optimizer which
  allow later to turn it to EXISTS or MAX/MIN.
2060

unknown's avatar
unknown committed
2061 2062
  @retval false  The subquery was transformed
  @retval true   Error
2063
*/
2064

unknown's avatar
unknown committed
2065
bool
2066
Item_in_subselect::single_value_transformer(JOIN *join)
unknown's avatar
unknown committed
2067
{
2068
  SELECT_LEX *select_lex= join->select_lex;
2069
  DBUG_ENTER("Item_in_subselect::single_value_transformer");
2070
  DBUG_ASSERT(thd == join->thd);
unknown's avatar
unknown committed
2071

2072 2073 2074 2075
  /*
    Check that the right part of the subselect contains no more than one
    column. E.g. in SELECT 1 IN (SELECT * ..) the right part is (SELECT * ...)
  */
2076
  // psergey: duplicated_subselect_card_check
2077 2078 2079
  if (select_lex->item_list.elements > 1)
  {
    my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
unknown's avatar
unknown committed
2080
    DBUG_RETURN(true);
2081 2082
  }

2083 2084 2085
  Item* join_having= join->having ? join->having : join->tmp_having;
  if (!(join_having || select_lex->with_sum_func ||
        select_lex->group_list.elements) &&
2086
      select_lex->table_list.elements == 0 && !join->conds &&
2087
      !select_lex->master_unit()->is_unit_op())
2088
  {
2089 2090 2091 2092 2093 2094 2095
    Item *where_item= (Item*) select_lex->item_list.head();
    /*
      it is single select without tables => possible optimization
      remove the dependence mark since the item is moved to upper
      select and is not outer anymore.
    */
    where_item->walk(&Item::remove_dependence_processor, 0,
2096
                     select_lex->outer_select());
2097
    /*
Sergei Golubchik's avatar
Sergei Golubchik committed
2098 2099
      fix_field of substitution item will be done in time of
      substituting.
2100 2101 2102 2103 2104 2105
      Note that real_item() should be used instead of
      original left expression because left_expr can be
      runtime created Ref item which is deleted at the end
      of the statement. Thus one of 'substitution' arguments
      can be broken in case of PS.
    */ 
2106
    substitution= func->create(thd, left_expr, where_item);
2107 2108
    have_to_be_excluded= 1;
    if (thd->lex->describe)
2109
    {
2110
      char warn_buff[MYSQL_ERRMSG_SIZE];
2111 2112
      sprintf(warn_buff, ER_THD(thd, ER_SELECT_REDUCED),
              select_lex->select_number);
2113
      push_warning(thd, Sql_condition::WARN_LEVEL_NOTE,
2114
                   ER_SELECT_REDUCED, warn_buff);
2115
    }
unknown's avatar
unknown committed
2116
    DBUG_RETURN(false);
2117 2118
  }

2119 2120 2121 2122
  /*
    Wrap the current IN predicate in an Item_in_optimizer. The actual
    substitution in the Item tree takes place in Item_subselect::fix_fields.
  */
2123
  if (!substitution)
unknown's avatar
unknown committed
2124
  {
2125
    /* We're invoked for the 1st (or the only) SELECT in the subquery UNION */
2126
    substitution= optimizer;
2127

2128
    SELECT_LEX *current= thd->lex->current_select;
unknown's avatar
unknown committed
2129

2130
    thd->lex->current_select= current->return_after_parsing();
unknown's avatar
unknown committed
2131
    if (!optimizer || optimizer->fix_left(thd))
2132
    {
unknown's avatar
unknown committed
2133
      thd->lex->current_select= current;
unknown's avatar
unknown committed
2134
      DBUG_RETURN(true);
2135
    }
unknown's avatar
unknown committed
2136
    thd->lex->current_select= current;
2137

2138
    /* We will refer to upper level cache array => we have to save it for SP */
2139
    DBUG_ASSERT(optimizer->get_cache()[0]->is_array_kept());
2140

2141
    /*
2142
      As far as  Item_in_optimizer does not substitute itself on fix_fields
2143 2144
      we can use same item for all selects.
    */
Monty's avatar
Monty committed
2145
    expr= new (thd->mem_root) Item_direct_ref(thd, &select_lex->context,
2146
                              (Item**)optimizer->get_cache(),
2147 2148
                              no_matter_name,
			      in_left_expr_name);
2149
  }
2150

2151 2152 2153
  DBUG_RETURN(false);
}

2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177

/**
  Apply transformation max/min  transwormation to ALL/ANY subquery if it is
  possible.

  @param join  Join object of the subquery (i.e. 'child' join).

  @details

  If this is an ALL/ANY single-value subselect, try to rewrite it with
  a MIN/MAX subselect. We can do that if a possible NULL result of the
  subselect can be ignored.
  E.g. SELECT * FROM t1 WHERE b > ANY (SELECT a FROM t2) can be rewritten
  with SELECT * FROM t1 WHERE b > (SELECT MAX(a) FROM t2).
  We can't check that this optimization is safe if it's not a top-level
  item of the WHERE clause (e.g. because the WHERE clause can contain IS
  NULL/IS NOT NULL functions). If so, we rewrite ALL/ANY with NOT EXISTS
  later in this method.

  @retval false  The subquery was transformed
  @retval true   Error
*/

bool Item_allany_subselect::transform_into_max_min(JOIN *join)
2178
{
2179
  DBUG_ENTER("Item_allany_subselect::transform_into_max_min");
unknown's avatar
unknown committed
2180
  if (!test_strategy(SUBS_MAXMIN_INJECTED | SUBS_MAXMIN_ENGINE))
2181
    DBUG_RETURN(false);
2182 2183 2184
  Item **place= optimizer->arguments() + 1;
  SELECT_LEX *select_lex= join->select_lex;
  Item *subs;
2185
  DBUG_ASSERT(thd == join->thd);
2186 2187 2188 2189 2190

  /*
  */
  DBUG_ASSERT(!substitution);

unknown's avatar
unknown committed
2191 2192 2193 2194 2195 2196 2197
  /*
    Check if optimization with aggregate min/max possible
    1 There is no aggregate in the subquery
    2 It is not UNION
    3 There is tables
    4 It is not ALL subquery with possible NULLs in the SELECT list
  */
2198 2199 2200 2201 2202 2203 2204
  if (!select_lex->group_list.elements &&                 /*1*/
      !select_lex->having &&                              /*1*/
      !select_lex->with_sum_func &&                       /*1*/
      !(select_lex->next_select()) &&                     /*2*/
      select_lex->table_list.elements &&                  /*3*/
      (!select_lex->ref_pointer_array[0]->maybe_null() || /*4*/
       substype() != Item_subselect::ALL_SUBS))           /*4*/
2205
  {
2206
    Item_sum_min_max *item;
2207 2208 2209 2210 2211 2212 2213
    nesting_map save_allow_sum_func;
    if (func->l_op())
    {
      /*
        (ALL && (> || =>)) || (ANY && (< || =<))
        for ALL condition is inverted
      */
2214 2215
      item= new (thd->mem_root) Item_sum_max(thd,
                                             select_lex->ref_pointer_array[0]);
2216 2217 2218 2219 2220 2221 2222
    }
    else
    {
      /*
        (ALL && (< || =<)) || (ANY && (> || =>))
        for ALL condition is inverted
      */
2223 2224
      item= new (thd->mem_root) Item_sum_min(thd,
                                             select_lex->ref_pointer_array[0]);
2225 2226 2227
    }
    if (upper_item)
      upper_item->set_sum_test(item);
2228
    thd->change_item_tree(&select_lex->ref_pointer_array[0], item);
2229 2230 2231 2232 2233 2234
    {
      List_iterator<Item> it(select_lex->item_list);
      it++;
      thd->change_item_tree(it.ref(), item);
    }

Michael Widenius's avatar
Michael Widenius committed
2235 2236 2237
    DBUG_EXECUTE("where",
                 print_where(item, "rewrite with MIN/MAX", QT_ORDINARY););

2238
    save_allow_sum_func= thd->lex->allow_sum_func;
2239
    thd->lex->allow_sum_func.set_bit(thd->lex->current_select->nest_level);
unknown's avatar
unknown committed
2240
    /*
2241 2242 2243
      Item_sum_(max|min) can't substitute other item => we can use 0 as
      reference, also Item_sum_(max|min) can't be fixed after creation, so
      we do not check item->fixed
unknown's avatar
unknown committed
2244
    */
2245 2246 2247 2248 2249 2250 2251 2252
    if (item->fix_fields(thd, 0))
      DBUG_RETURN(true);
    thd->lex->allow_sum_func= save_allow_sum_func; 
    /* we added aggregate function => we have to change statistic */
    count_field_types(select_lex, &join->tmp_table_param, join->all_fields, 
                      0);
    if (join->prepare_stage2())
      DBUG_RETURN(true);
2253
    subs= new (thd->mem_root) Item_singlerow_subselect(thd, select_lex);
2254

unknown's avatar
unknown committed
2255 2256 2257 2258
    /*
      Remove other strategies if any (we already changed the query and
      can't apply other strategy).
    */
unknown's avatar
unknown committed
2259
    set_strategy(SUBS_MAXMIN_INJECTED);
2260 2261 2262 2263
  }
  else
  {
    Item_maxmin_subselect *item;
Monty's avatar
Monty committed
2264
    subs= item= new (thd->mem_root) Item_maxmin_subselect(thd, this, select_lex, func->l_op());
2265 2266
    if (upper_item)
      upper_item->set_sub_test(item);
unknown's avatar
unknown committed
2267 2268 2269 2270
    /*
      Remove other strategies if any (we already changed the query and
      can't apply other strategy).
    */
unknown's avatar
unknown committed
2271
    set_strategy(SUBS_MAXMIN_ENGINE);
2272
  }
2273
  /*
unknown's avatar
unknown committed
2274 2275
    The swap is needed for expressions of type 'f1 < ALL ( SELECT ....)'
    where we want to evaluate the sub query even if f1 would be null.
2276
  */
2277
  subs= func->create_swap(thd, expr, subs);
2278 2279
  thd->change_item_tree(place, subs);
  if (subs->fix_fields(thd, &subs))
2280
    DBUG_RETURN(true);
2281 2282 2283 2284
  DBUG_ASSERT(subs == (*place)); // There was no substitutions

  select_lex->master_unit()->uncacheable&= ~UNCACHEABLE_DEPENDENT_INJECTED;
  select_lex->uncacheable&= ~UNCACHEABLE_DEPENDENT_INJECTED;
2285

unknown's avatar
unknown committed
2286
  DBUG_RETURN(false);
2287
}
2288

2289

2290 2291 2292
bool Item_in_subselect::fix_having(Item *having, SELECT_LEX *select_lex)
{
  bool fix_res= 0;
2293
  DBUG_ASSERT(thd);
2294
  if (!having->fixed())
2295 2296 2297 2298 2299 2300
  {
    select_lex->having_fix_field= 1;
    fix_res= having->fix_fields(thd, 0);
    select_lex->having_fix_field= 0;
  }
  return fix_res;
2301 2302
}

2303 2304 2305 2306 2307 2308
bool Item_allany_subselect::is_maxmin_applicable(JOIN *join)
{
  /*
    Check if max/min optimization applicable: It is top item of
    WHERE condition.
  */
2309 2310 2311 2312 2313
  return ((is_top_level_item() ||
           (upper_item && upper_item->is_top_level_item())) &&
          !(join->select_lex->master_unit()->uncacheable &
            ~UNCACHEABLE_EXPLAIN) &&
          !func->eqne_op());
2314 2315 2316 2317
}


/**
2318 2319
  Create the predicates needed to transform a single-column IN/ALL/ANY
  subselect into a correlated EXISTS via predicate injection.
2320

2321 2322 2323
  @param join[in]  Join object of the subquery (i.e. 'child' join).
  @param where_item[out]   the in-to-exists addition to the where clause
  @param having_item[out]  the in-to-exists addition to the having clause
2324

2325 2326
  @details
  The correlated predicates are created as follows:
2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340

  - If the subquery has aggregates, GROUP BY, or HAVING, convert to

    SELECT ie FROM ...  HAVING subq_having AND 
                               trigcond(oe $cmp$ ref_or_null_helper<ie>)
                                   
    the addition is wrapped into trigger only when we want to distinguish
    between NULL and FALSE results.

  - Otherwise (no aggregates/GROUP BY/HAVING) convert it to one of the
    following:

    = If we don't need to distinguish between NULL and FALSE subquery:
        
2341
      SELECT ie FROM ... WHERE subq_where AND (oe $cmp$ ie)
2342 2343 2344

    = If we need to distinguish between those:

2345
      SELECT ie FROM ...
2346 2347 2348
        WHERE  subq_where AND trigcond((oe $cmp$ ie) OR (ie IS NULL))
        HAVING trigcond(<is_not_null_test>(ie))

unknown's avatar
unknown committed
2349 2350
  @retval false If the new conditions were created successfully
  @retval true  Error
2351 2352
*/

unknown's avatar
unknown committed
2353
bool
Monty's avatar
Monty committed
2354
Item_in_subselect::create_single_in_to_exists_cond(JOIN *join,
2355 2356
                                                   Item **where_item,
                                                   Item **having_item)
2357 2358
{
  SELECT_LEX *select_lex= join->select_lex;
2359
  DBUG_ASSERT(thd == join->thd);
unknown's avatar
unknown committed
2360
  /*
2361 2362
    The non-transformed HAVING clause of 'join' may be stored in two ways
    during JOIN::optimize: this->tmp_having= this->having; this->having= 0;
unknown's avatar
unknown committed
2363
  */
2364 2365
  Item* join_having= join->having ? join->having : join->tmp_having;
  DBUG_ENTER("Item_in_subselect::create_single_in_to_exists_cond");
2366

2367 2368
  *where_item= NULL;
  *having_item= NULL;
2369

2370
  if (join_having || select_lex->with_sum_func ||
2371 2372
      select_lex->group_list.elements)
  {
Monty's avatar
Monty committed
2373
    LEX_CSTRING field_name= this->full_name_cstring();
2374
    Item *item= func->create(thd, expr,
2375
                             new (thd->mem_root) Item_ref_null_helper(
2376
                                                      thd,
2377
                                                      &select_lex->context,
2378
                                                      this,
2379 2380
                                                      &select_lex->
                                                      ref_pointer_array[0],  
2381 2382
                                                      {STRING_WITH_LEN("<ref>")},
                                                      field_name));
2383
    if (!is_top_level_item() && left_expr->maybe_null())
2384 2385 2386
    {
      /* 
        We can encounter "NULL IN (SELECT ...)". Wrap the added condition
2387
        within a trig_cond.
2388
      */
2389
      disable_cond_guard_for_const_null_left_expr(0);
Monty's avatar
Monty committed
2390
      item= new (thd->mem_root) Item_func_trig_cond(thd, item, get_cond_guard(0));
2391
    }
2392

2393
    if (!join_having)
2394
      item->name= in_having_cond;
2395
    if (fix_having(item, select_lex))
unknown's avatar
unknown committed
2396
      DBUG_RETURN(true);
2397
    *having_item= item;
2398 2399 2400
  }
  else
  {
2401 2402 2403 2404 2405 2406
    /*
      No need to use real_item for the item, as the ref items that are possible
      in the subquery either belong to views or to the parent select.
      For such case we need to refer to the reference and not to the original
      item.
    */
2407
    Item *item= (Item*) select_lex->item_list.head();
unknown's avatar
unknown committed
2408

2409
    if (select_lex->table_list.elements ||
Marko Mäkelä's avatar
Marko Mäkelä committed
2410
        !(select_lex->master_unit()->is_unit_op()))
2411
    {
2412 2413
      Item *having= item;
      Item *orig_item= item;
Marko Mäkelä's avatar
Marko Mäkelä committed
2414

2415
      item= func->create(thd, expr, item);
2416
      if (!is_top_level_item() && orig_item->maybe_null())
unknown's avatar
unknown committed
2417
      {
2418
	having= new (thd->mem_root) Item_is_not_null_test(thd, this, having);
2419
        if (left_expr->maybe_null())
2420
        {
2421
          disable_cond_guard_for_const_null_left_expr(0);
2422
          if (!(having= new (thd->mem_root) Item_func_trig_cond(thd, having,
2423
                                                            get_cond_guard(0))))
unknown's avatar
unknown committed
2424
            DBUG_RETURN(true);
2425
        }
2426
        having->name= in_having_cond;
2427
        if (fix_having(having, select_lex))
unknown's avatar
unknown committed
2428
          DBUG_RETURN(true);
2429
        *having_item= having;
2430

2431 2432
	item= new (thd->mem_root) Item_cond_or(thd, item,
                               new (thd->mem_root) Item_func_isnull(thd, orig_item));
2433
      }
2434
      /* 
2435 2436
        If we may encounter NULL IN (SELECT ...) and care whether subquery
        result is NULL or FALSE, wrap condition in a trig_cond.
2437
      */
2438
      if (!is_top_level_item() && left_expr->maybe_null())
2439
      {
2440
        disable_cond_guard_for_const_null_left_expr(0);
2441
        if (!(item= new (thd->mem_root) Item_func_trig_cond(thd, item,
2442
                                                            get_cond_guard(0))))
unknown's avatar
unknown committed
2443
          DBUG_RETURN(true);
2444
      }
2445

2446 2447 2448 2449 2450
      /*
        TODO: figure out why the following is done here in 
        single_value_transformer but there is no corresponding action in
        row_value_transformer?
      */
2451
      item->name= in_additional_cond;
2452
      if (item->fix_fields_if_needed(thd, 0))
unknown's avatar
unknown committed
2453
        DBUG_RETURN(true);
2454
      *where_item= item;
2455 2456 2457
    }
    else
    {
Marko Mäkelä's avatar
Marko Mäkelä committed
2458 2459
      DBUG_ASSERT(select_lex->master_unit()->is_unit_op());
      LEX_CSTRING field_name= {STRING_WITH_LEN("<result>") };
2460 2461 2462
      Item *new_having=
        func->create(thd, expr,
                     new (thd->mem_root) Item_ref_null_helper(thd,
2463 2464
                                                  &select_lex->context,
                                                  this,
2465
                                                  &select_lex->ref_pointer_array[0],
2466 2467
                                                  no_matter_name,
                                                  field_name));
2468
      if (!is_top_level_item() && left_expr->maybe_null())
2469
      {
2470
        disable_cond_guard_for_const_null_left_expr(0);
Marko Mäkelä's avatar
Marko Mäkelä committed
2471 2472
        if (!(new_having= new (thd->mem_root)
              Item_func_trig_cond(thd, new_having, get_cond_guard(0))))
unknown's avatar
unknown committed
2473
          DBUG_RETURN(true);
2474
      }
2475

Marko Mäkelä's avatar
Marko Mäkelä committed
2476
      new_having->name= in_having_cond;
2477 2478
      if (fix_having(new_having, select_lex))
        DBUG_RETURN(true);
Marko Mäkelä's avatar
Marko Mäkelä committed
2479

2480
      *having_item= new_having;
2481
    }
unknown's avatar
unknown committed
2482
  }
unknown's avatar
unknown committed
2483

unknown's avatar
unknown committed
2484
  DBUG_RETURN(false);
unknown's avatar
unknown committed
2485
}
unknown's avatar
unknown committed
2486

2487

2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
/**
  Wrap a multi-column IN/ALL/ANY subselect into an Item_in_optimizer.

  @param join  Join object of the subquery (i.e. 'child' join).

  @details
  The subquery predicate is wrapped into an Item_in_optimizer. Later the query
  optimization phase chooses whether the subquery under the Item_in_optimizer
  will be further transformed into an equivalent correlated EXISTS by injecting
  additional predicates, or will be executed via subquery materialization in its
  unmodified form.

unknown's avatar
unknown committed
2500 2501
  @retval false  The subquery was transformed
  @retval true   Error
2502 2503
*/

unknown's avatar
unknown committed
2504
bool
unknown's avatar
unknown committed
2505
Item_in_subselect::row_value_transformer(JOIN *join)
unknown's avatar
unknown committed
2506
{
unknown's avatar
unknown committed
2507
  SELECT_LEX *select_lex= join->select_lex;
2508
  uint cols_num= left_expr->cols();
2509

unknown's avatar
unknown committed
2510
  DBUG_ENTER("Item_in_subselect::row_value_transformer");
2511
  DBUG_ASSERT(thd == join->thd);
unknown's avatar
unknown committed
2512

2513
  // psergey: duplicated_subselect_card_check
2514
  if (select_lex->item_list.elements != cols_num)
2515
  {
2516
    my_error(ER_OPERAND_COLUMNS, MYF(0), cols_num);
unknown's avatar
unknown committed
2517
    DBUG_RETURN(true);
2518 2519
  }

2520 2521 2522 2523
  /*
    Wrap the current IN predicate in an Item_in_optimizer. The actual
    substitution in the Item tree takes place in Item_subselect::fix_fields.
  */
2524
  if (!substitution)
unknown's avatar
unknown committed
2525
  {
2526
    //first call for this unit
2527
    SELECT_LEX_UNIT *master_unit= select_lex->master_unit();
2528
    substitution= optimizer;
2529

2530 2531
    SELECT_LEX *current= thd->lex->current_select;
    thd->lex->current_select= current->return_after_parsing();
unknown's avatar
unknown committed
2532
    if (!optimizer || optimizer->fix_left(thd))
2533
    {
unknown's avatar
unknown committed
2534
      thd->lex->current_select= current;
unknown's avatar
unknown committed
2535
      DBUG_RETURN(true);
2536
    }
2537

unknown's avatar
unknown committed
2538
    // we will refer to upper level cache array => we have to save it in PS
2539
    DBUG_ASSERT(optimizer->get_cache()[0]->is_array_kept());
2540

unknown's avatar
unknown committed
2541
    thd->lex->current_select= current;
unknown's avatar
unknown committed
2542 2543 2544
    /*
      The uncacheable property controls a number of actions, e.g. whether to
      save/restore (via init_save_join_tab/restore_tmp) the original JOIN for
2545
      plans with a temp table where the original JOIN was overridden by
unknown's avatar
unknown committed
2546 2547 2548 2549 2550
      make_simple_join. The UNCACHEABLE_EXPLAIN is ignored by EXPLAIN, thus
      non-correlated subqueries will not appear as such to EXPLAIN.
    */
    master_unit->uncacheable|= UNCACHEABLE_EXPLAIN;
    select_lex->uncacheable|= UNCACHEABLE_EXPLAIN;
2551 2552
  }

unknown's avatar
unknown committed
2553
  DBUG_RETURN(false);
2554 2555 2556 2557
}


/**
2558 2559
  Create the predicates needed to transform a multi-column IN/ALL/ANY
  subselect into a correlated EXISTS via predicate injection.
2560

2561
  @details
unknown's avatar
unknown committed
2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591
  The correlated predicates are created as follows:

  - If the subquery has aggregates, GROUP BY, or HAVING, convert to

    (l1, l2, l3) IN (SELECT v1, v2, v3 ... HAVING having)
    =>
    EXISTS (SELECT ... HAVING having and
                              (l1 = v1 or is null v1) and
                              (l2 = v2 or is null v2) and
                              (l3 = v3 or is null v3) and
                              is_not_null_test(v1) and
                              is_not_null_test(v2) and
                              is_not_null_test(v3))

    where is_not_null_test used to register nulls in case if we have
    not found matching to return correct NULL value.

  - Otherwise (no aggregates/GROUP BY/HAVING) convert the subquery as follows:

    (l1, l2, l3) IN (SELECT v1, v2, v3 ... WHERE where)
    =>
    EXISTS (SELECT ... WHERE where and
                             (l1 = v1 or is null v1) and
                             (l2 = v2 or is null v2) and
                             (l3 = v3 or is null v3)
                       HAVING is_not_null_test(v1) and
                              is_not_null_test(v2) and
                              is_not_null_test(v3))
    where is_not_null_test registers NULLs values but reject rows.

Ian Gilfillan's avatar
Ian Gilfillan committed
2592
    in case when we do not need correct NULL, we have simpler construction:
unknown's avatar
unknown committed
2593 2594 2595 2596
    EXISTS (SELECT ... WHERE where and
                             (l1 = v1) and
                             (l2 = v2) and
                             (l3 = v3)
2597 2598 2599 2600 2601

  @param join[in]  Join object of the subquery (i.e. 'child' join).
  @param where_item[out]   the in-to-exists addition to the where clause
  @param having_item[out]  the in-to-exists addition to the having clause

unknown's avatar
unknown committed
2602 2603
  @retval false  If the new conditions were created successfully
  @retval true   Error
2604 2605
*/

unknown's avatar
unknown committed
2606
bool
2607 2608 2609
Item_in_subselect::create_row_in_to_exists_cond(JOIN * join,
                                                Item **where_item,
                                                Item **having_item)
2610 2611 2612
{
  SELECT_LEX *select_lex= join->select_lex;
  uint cols_num= left_expr->cols();
2613
  /*
2614 2615
    The non-transformed HAVING clause of 'join' may be stored in two ways
    during JOIN::optimize: this->tmp_having= this->having; this->having= 0;
2616 2617 2618
  */
  Item* join_having= join->having ? join->having : join->tmp_having;
  bool is_having_used= (join_having || select_lex->with_sum_func ||
2619 2620
                        select_lex->group_list.first ||
                        !select_lex->table_list.elements);
2621
  LEX_CSTRING list_ref= { STRING_WITH_LEN("<list ref>")};
2622
  DBUG_ENTER("Item_in_subselect::create_row_in_to_exists_cond");
2623
  DBUG_ASSERT(thd == join->thd);
2624 2625 2626

  *where_item= NULL;
  *having_item= NULL;
2627

2628
  if (is_having_used)
unknown's avatar
unknown committed
2629
  {
unknown's avatar
unknown committed
2630
    /* TODO: say here explicitly if the order of AND parts matters or not. */
2631 2632
    Item *item_having_part2= 0;
    for (uint i= 0; i < cols_num; i++)
unknown's avatar
unknown committed
2633
    {
2634
      DBUG_ASSERT((left_expr->fixed() &&
2635

2636
                  select_lex->ref_pointer_array[i]->fixed()) ||
unknown's avatar
unknown committed
2637 2638 2639
                  (select_lex->ref_pointer_array[i]->type() == REF_ITEM &&
                   ((Item_ref*)(select_lex->ref_pointer_array[i]))->ref_type() ==
                    Item_ref::OUTER_REF));
2640
      Item *item_eq=
Monty's avatar
Monty committed
2641 2642 2643 2644 2645
        new (thd->mem_root)
        Item_func_eq(thd, new (thd->mem_root)
                     Item_direct_ref(thd, &select_lex->context,
                                     (*optimizer->get_cache())->
                                     addr(i),
2646 2647
                                     no_matter_name,
                                     in_left_expr_name),
Monty's avatar
Monty committed
2648 2649
                     new (thd->mem_root)
                     Item_ref(thd, &select_lex->context,
2650
                              &select_lex->ref_pointer_array[i],
2651 2652
                              no_matter_name,
                              list_ref));
Monty's avatar
Monty committed
2653 2654 2655 2656
      Item *item_isnull=
        new (thd->mem_root)
        Item_func_isnull(thd,
                         new (thd->mem_root)
2657
                         Item_ref(thd, &select_lex->context,
2658
                                  &select_lex->ref_pointer_array[i],
2659 2660
                                  no_matter_name,
                                  list_ref));
Monty's avatar
Monty committed
2661 2662
      Item *col_item= new (thd->mem_root)
        Item_cond_or(thd, item_eq, item_isnull);
2663
      if (!is_top_level_item() && left_expr->element_index(i)->maybe_null() &&
Igor Babaev's avatar
Igor Babaev committed
2664
          get_cond_guard(i))
2665
      {
2666
        disable_cond_guard_for_const_null_left_expr(i);
Monty's avatar
Monty committed
2667 2668
        if (!(col_item= new (thd->mem_root)
              Item_func_trig_cond(thd, col_item, get_cond_guard(i))))
unknown's avatar
unknown committed
2669
          DBUG_RETURN(true);
2670
      }
2671
      *having_item= and_items(thd, *having_item, col_item);
2672

2673
      Item *item_nnull_test= 
Monty's avatar
Monty committed
2674 2675 2676 2677
         new (thd->mem_root)
        Item_is_not_null_test(thd, this,
                              new (thd->mem_root)
                              Item_ref(thd, &select_lex->context,
2678 2679
                                       &select_lex->
                                       ref_pointer_array[i],
2680 2681
                                       no_matter_name,
                                       list_ref));
2682
      if (!is_top_level_item() && left_expr->element_index(i)->maybe_null() &&
Igor Babaev's avatar
Igor Babaev committed
2683
          get_cond_guard(i) )
2684
      {
2685
        disable_cond_guard_for_const_null_left_expr(i);
2686
        if (!(item_nnull_test= 
Monty's avatar
Monty committed
2687 2688
              new (thd->mem_root)
              Item_func_trig_cond(thd, item_nnull_test, get_cond_guard(i))))
unknown's avatar
unknown committed
2689
          DBUG_RETURN(true);
2690
      }
2691
      item_having_part2= and_items(thd, item_having_part2, item_nnull_test);
2692
      item_having_part2->top_level_item();
unknown's avatar
unknown committed
2693
    }
2694
    *having_item= and_items(thd, *having_item, item_having_part2);
2695
  }
2696
  else
2697
  {
2698 2699 2700
    for (uint i= 0; i < cols_num; i++)
    {
      Item *item, *item_isnull;
2701 2702
      DBUG_ASSERT((left_expr->fixed() &&
                  select_lex->ref_pointer_array[i]->fixed()) ||
unknown's avatar
unknown committed
2703 2704 2705
                  (select_lex->ref_pointer_array[i]->type() == REF_ITEM &&
                   ((Item_ref*)(select_lex->ref_pointer_array[i]))->ref_type() ==
                    Item_ref::OUTER_REF));
Monty's avatar
Monty committed
2706 2707 2708 2709 2710 2711
      item= new (thd->mem_root)
        Item_func_eq(thd,
                     new (thd->mem_root)
                     Item_direct_ref(thd, &select_lex->context,
                                     (*optimizer->get_cache())->
                                     addr(i),
2712 2713
                                     no_matter_name,
                                     in_left_expr_name),
Monty's avatar
Monty committed
2714 2715
                     new (thd->mem_root)
                     Item_direct_ref(thd, &select_lex->context,
2716 2717
                                     &select_lex->
                                     ref_pointer_array[i],
2718 2719
                                     no_matter_name,
                                     list_ref));
2720
      if (!is_top_level_item() && select_lex->ref_pointer_array[i]->maybe_null())
2721
      {
2722
        Item *having_col_item=
Monty's avatar
Monty committed
2723 2724 2725 2726
          new (thd->mem_root)
          Item_is_not_null_test(thd, this,
                                new (thd->mem_root)
                                Item_ref(thd, &select_lex->context, 
2727
                                         &select_lex->ref_pointer_array[i],
2728 2729
                                         no_matter_name,
                                         list_ref));
2730
        
Monty's avatar
Monty committed
2731 2732 2733
        item_isnull= new (thd->mem_root)
          Item_func_isnull(thd,
                           new (thd->mem_root)
2734
                           Item_direct_ref(thd, &select_lex->context,
2735 2736
                                           &select_lex->
                                           ref_pointer_array[i],
2737 2738
                                           no_matter_name,
                                           list_ref));
Monty's avatar
Monty committed
2739
        item= new (thd->mem_root) Item_cond_or(thd, item, item_isnull);
2740
        if (left_expr->element_index(i)->maybe_null() && get_cond_guard(i))
2741
        {
2742
          disable_cond_guard_for_const_null_left_expr(i);
Monty's avatar
Monty committed
2743 2744
          if (!(item= new (thd->mem_root)
                Item_func_trig_cond(thd, item, get_cond_guard(i))))
unknown's avatar
unknown committed
2745
            DBUG_RETURN(true);
Monty's avatar
Monty committed
2746 2747
          if (!(having_col_item= new (thd->mem_root)
                Item_func_trig_cond(thd, having_col_item, get_cond_guard(i))))
unknown's avatar
unknown committed
2748
            DBUG_RETURN(true);
2749
        }
2750
        *having_item= and_items(thd, *having_item, having_col_item);
2751
      }
2752
      if (!is_top_level_item() && left_expr->element_index(i)->maybe_null() &&
Igor Babaev's avatar
Igor Babaev committed
2753
          get_cond_guard(i))
2754
      {
Monty's avatar
Monty committed
2755 2756
        if (!(item= new (thd->mem_root)
              Item_func_trig_cond(thd, item, get_cond_guard(i))))
2757 2758
          DBUG_RETURN(true);
      }
2759
      *where_item= and_items(thd, *where_item, item);
2760
    }
unknown's avatar
unknown committed
2761
  }
2762

2763
  if (*where_item)
2764
  {
2765
    if ((*where_item)->fix_fields_if_needed(thd, 0))
unknown's avatar
unknown committed
2766
      DBUG_RETURN(true);
2767
    (*where_item)->top_level_item();
2768
  }
unknown's avatar
unknown committed
2769

2770
  if (*having_item)
2771
  {
2772
    if (!join_having)
2773
      (*having_item)->name= in_having_cond;
2774
    if (fix_having(*having_item, select_lex))
unknown's avatar
unknown committed
2775
      DBUG_RETURN(true);
2776
    (*having_item)->top_level_item();
2777
  }
unknown's avatar
unknown committed
2778

unknown's avatar
unknown committed
2779
  DBUG_RETURN(false);
unknown's avatar
unknown committed
2780 2781
}

2782

unknown's avatar
unknown committed
2783
bool
unknown's avatar
unknown committed
2784
Item_in_subselect::select_transformer(JOIN *join)
unknown's avatar
unknown committed
2785
{
2786
  return select_in_like_transformer(join);
2787 2788
}

unknown's avatar
unknown committed
2789 2790 2791 2792 2793 2794
bool
Item_exists_subselect::select_transformer(JOIN *join)
{
  return select_prepare_to_be_in();
}

2795

unknown's avatar
unknown committed
2796
/**
2797 2798
  Create the predicates needed to transform an IN/ALL/ANY subselect into a
  correlated EXISTS via predicate injection.
2799

2800
  @param join_arg  Join object of the subquery.
2801

2802 2803 2804 2805
  @retval FALSE  ok
  @retval TRUE   error
*/

2806 2807
bool Item_in_subselect::create_in_to_exists_cond(JOIN *join_arg)
{
unknown's avatar
unknown committed
2808
  bool res;
2809 2810 2811 2812

  DBUG_ASSERT(engine->engine_type() == subselect_engine::SINGLE_SELECT_ENGINE ||
              engine->engine_type() == subselect_engine::UNION_ENGINE);
  /*
2813
    TODO: the call to init_cond_guards allocates and initializes an
2814 2815 2816
    array of booleans that may not be used later because we may choose
    materialization.
    The two calls below to create_XYZ_cond depend on this boolean array.
2817
    If the dependency is removed, the call can be moved to a later phase.
2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
  */
  init_cond_guards();
  if (left_expr->cols() == 1)
    res= create_single_in_to_exists_cond(join_arg,
                                         &(join_arg->in_to_exists_where),
                                         &(join_arg->in_to_exists_having));
  else
    res= create_row_in_to_exists_cond(join_arg,
                                      &(join_arg->in_to_exists_where),
                                      &(join_arg->in_to_exists_having));
2828

2829 2830 2831
  /*
    The IN=>EXISTS transformation makes non-correlated subqueries correlated.
  */
2832
  if (!left_expr->can_eval_in_optimize())
2833 2834 2835 2836 2837
  {
    join_arg->select_lex->uncacheable|= UNCACHEABLE_DEPENDENT_INJECTED;
    join_arg->select_lex->master_unit()->uncacheable|= 
                                         UNCACHEABLE_DEPENDENT_INJECTED;
  }
2838 2839 2840
  /*
    The uncacheable property controls a number of actions, e.g. whether to
    save/restore (via init_save_join_tab/restore_tmp) the original JOIN for
2841
    plans with a temp table where the original JOIN was overridden by
2842 2843 2844 2845 2846
    make_simple_join. The UNCACHEABLE_EXPLAIN is ignored by EXPLAIN, thus
    non-correlated subqueries will not appear as such to EXPLAIN.
  */
  join_arg->select_lex->master_unit()->uncacheable|= UNCACHEABLE_EXPLAIN;
  join_arg->select_lex->uncacheable|= UNCACHEABLE_EXPLAIN;
unknown's avatar
unknown committed
2847
  return (res);
2848 2849 2850
}


2851 2852 2853 2854 2855 2856 2857 2858 2859 2860
/**
  Transform an IN/ALL/ANY subselect into a correlated EXISTS via injecting
  correlated in-to-exists predicates.

  @param join_arg  Join object of the subquery.

  @retval FALSE  ok
  @retval TRUE   error
*/

2861
bool Item_in_subselect::inject_in_to_exists_cond(JOIN *join_arg)
2862
{
2863 2864 2865
  SELECT_LEX *select_lex= join_arg->select_lex;
  Item *where_item= join_arg->in_to_exists_where;
  Item *having_item= join_arg->in_to_exists_having;
2866

2867
  DBUG_ENTER("Item_in_subselect::inject_in_to_exists_cond");
2868
  DBUG_ASSERT(thd == join_arg->thd);
2869

Igor Babaev's avatar
Igor Babaev committed
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
  if (select_lex->min_max_opt_list.elements)
  {
    /*
      MIN/MAX optimizations have been applied to Item_sum objects
      of the subquery this subquery predicate in opt_sum_query().
      Injection of new condition invalidates this optimizations.
      Thus those optimizations must be rolled back.
    */
    List_iterator_fast<Item_sum> it(select_lex->min_max_opt_list);
    Item_sum *item;
    while ((item= it++))
    {
      item->clear();
      item->reset_forced_const();
    }
    if (where_item)
      where_item->update_used_tables();
    if (having_item)
      having_item->update_used_tables();
  }

2891 2892
  if (where_item)
  {
unknown's avatar
unknown committed
2893
    List<Item> *and_args= NULL;
unknown's avatar
unknown committed
2894
    /*
unknown's avatar
unknown committed
2895 2896 2897 2898 2899 2900 2901
      If the top-level Item of the WHERE clause is an AND, detach the multiple
      equality list that was attached to the end of the AND argument list by
      build_equal_items_for_cond(). The multiple equalities must be detached
      because fix_fields merges lower level AND arguments into the upper AND.
      As a result, the arguments from lower-level ANDs are concatenated after
      the multiple equalities. When the multiple equality list is treated as
      such, it turns out that it contains non-Item_equal object which is wrong.
unknown's avatar
unknown committed
2902
    */
unknown's avatar
unknown committed
2903 2904 2905 2906 2907 2908 2909 2910
    if (join_arg->conds && join_arg->conds->type() == Item::COND_ITEM &&
        ((Item_cond*) join_arg->conds)->functype() == Item_func::COND_AND_FUNC)
    {
      and_args= ((Item_cond*) join_arg->conds)->argument_list();
      if (join_arg->cond_equal)
        and_args->disjoin((List<Item> *) &join_arg->cond_equal->current_level);
    }

2911
    where_item= and_items(thd, join_arg->conds, where_item);
2912 2913

    /* This is the fix_fields() call mentioned in the comment above */
2914
    if (where_item->fix_fields_if_needed(thd, 0))
2915
      DBUG_RETURN(true);
2916
    // TIMOUR TODO: call optimize_cond() for the new where clause
2917
    thd->change_item_tree(&select_lex->where, where_item);
2918
    select_lex->where->top_level_item();
2919
    join_arg->conds= select_lex->where;
unknown's avatar
unknown committed
2920 2921 2922 2923

    /* Attach back the list of multiple equalities to the new top-level AND. */
    if (and_args && join_arg->cond_equal)
    {
2924 2925 2926 2927
      /*
        The fix_fields() call above may have changed the argument list, so
        fetch it again:
      */
unknown's avatar
unknown committed
2928
      and_args= ((Item_cond*) join_arg->conds)->argument_list();
2929 2930 2931
      ((Item_cond_and *) (join_arg->conds))->m_cond_equal=
                                             *join_arg->cond_equal;
      and_args->append((List<Item> *)&join_arg->cond_equal->current_level);
unknown's avatar
unknown committed
2932
    }
unknown's avatar
unknown committed
2933
  }
2934

2935
  if (having_item)
2936
  {
2937
    Item* join_having= join_arg->having ? join_arg->having:join_arg->tmp_having;
2938
    having_item= and_items(thd, join_having, having_item);
2939 2940
    if (fix_having(having_item, select_lex))
      DBUG_RETURN(true);
2941
    // TIMOUR TODO: call optimize_cond() for the new having clause
2942
    thd->change_item_tree(&select_lex->having, having_item);
2943
    select_lex->having->top_level_item();
2944
    join_arg->having= select_lex->having;
2945
  }
2946 2947 2948
  SELECT_LEX *global_parameters= unit->global_parameters();
  join_arg->thd->change_item_tree(&global_parameters->limit_params.select_limit,
                                  new (thd->mem_root) Item_int(thd, (int32) 1));
2949
  unit->lim.set_single_row();
unknown's avatar
unknown committed
2950

2951
  DBUG_RETURN(false);
2952 2953 2954
}


unknown's avatar
unknown committed
2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965
/*
  If this select can potentially be converted by EXISTS->IN conversion, wrap it
  in an Item_in_optimizer object. Final decision whether to do the conversion
  is done at a later phase.
*/

bool Item_exists_subselect::select_prepare_to_be_in()
{
  bool trans_res= FALSE;
  DBUG_ENTER("Item_exists_subselect::select_prepare_to_be_in");
  if (!optimizer &&
2966 2967
      (thd->lex->sql_command == SQLCOM_SELECT ||
       thd->lex->sql_command == SQLCOM_UPDATE_MULTI ||
2968 2969 2970
       thd->lex->sql_command == SQLCOM_DELETE_MULTI ||
       thd->lex->sql_command == SQLCOM_UPDATE ||
       thd->lex->sql_command == SQLCOM_DELETE) &&
unknown's avatar
unknown committed
2971 2972 2973 2974 2975 2976 2977 2978
      !unit->first_select()->is_part_of_union() &&
      optimizer_flag(thd, OPTIMIZER_SWITCH_EXISTS_TO_IN) &&
      (is_top_level_item() ||
       (upper_not && upper_not->is_top_level_item())))
  {
    Query_arena *arena, backup;
    bool result;
    arena= thd->activate_stmt_arena_if_needed(&backup);
Monty's avatar
Monty committed
2979
    result= (!(optimizer= new (thd->mem_root) Item_in_optimizer(thd, new (thd->mem_root) Item_int(thd, 1), this)));
unknown's avatar
unknown committed
2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993
    if (arena)
      thd->restore_active_arena(arena, &backup);
    if (result)
      trans_res= TRUE;
    else
      substitution= optimizer;
  }
  DBUG_RETURN(trans_res);
}

/**
  Check if 'func' is an equality in form "inner_table.column = outer_expr"

  @param func              Expression to check
2994 2995
  @param allow_subselect   If true, the outer_expr part can have a subquery
                           If false, it cannot.
unknown's avatar
unknown committed
2996 2997 2998 2999 3000 3001 3002
  @param local_field  OUT  Return "inner_table.column" here
  @param outer_expr   OUT  Return outer_expr here

  @return true - 'func' is an Equality.
*/

static bool check_equality_for_exist2in(Item_func *func,
3003
                                        bool allow_subselect,
unknown's avatar
unknown committed
3004 3005 3006 3007 3008 3009
                                        Item_ident **local_field,
                                        Item **outer_exp)
{
  Item **args;
  if (func->functype() != Item_func::EQ_FUNC)
    return FALSE;
3010
  DBUG_ASSERT(func->argument_count() == 2);
unknown's avatar
unknown committed
3011 3012 3013
  args= func->arguments();
  if (args[0]->real_type() == Item::FIELD_ITEM &&
      args[0]->all_used_tables() != OUTER_REF_TABLE_BIT &&
3014
      args[1]->all_used_tables() == OUTER_REF_TABLE_BIT &&
3015
      (allow_subselect || !args[1]->with_subquery()))
unknown's avatar
unknown committed
3016 3017 3018 3019 3020 3021 3022 3023 3024 3025
  {
    /* It is Item_field or Item_direct_view_ref) */
    DBUG_ASSERT(args[0]->type() == Item::FIELD_ITEM ||
                args[0]->type() == Item::REF_ITEM);
    *local_field= (Item_ident *)args[0];
    *outer_exp= args[1];
    return TRUE;
  }
  else if (args[1]->real_type() == Item::FIELD_ITEM &&
           args[1]->all_used_tables() != OUTER_REF_TABLE_BIT &&
3026
           args[0]->all_used_tables() == OUTER_REF_TABLE_BIT &&
3027
           (allow_subselect || !args[0]->with_subquery()))
unknown's avatar
unknown committed
3028 3029
  {
    /* It is Item_field or Item_direct_view_ref) */
Oleksandr Byelkin's avatar
Oleksandr Byelkin committed
3030 3031
    DBUG_ASSERT(args[1]->type() == Item::FIELD_ITEM ||
                args[1]->type() == Item::REF_ITEM);
unknown's avatar
unknown committed
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041
    *local_field= (Item_ident *)args[1];
    *outer_exp= args[0];
    return TRUE;
  }

  return FALSE;
}

typedef struct st_eq_field_outer
{
3042
  Item **eq_ref;
unknown's avatar
unknown committed
3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055
  Item_ident *local_field;
  Item *outer_exp;
} EQ_FIELD_OUTER;


/**
  Check if 'conds' is a set of AND-ed outer_expr=inner_table.col equalities

  @detail
    Check if 'conds' has form

    outer1=inner_tbl1.col1 AND ... AND outer2=inner_tbl1.col2 AND remainder_cond

3056 3057 3058 3059 3060 3061 3062
    if there is just one outer_expr=inner_expr pair, then outer_expr can have a
    subselect in it.  If there are many such pairs, then none of outer_expr can
    have a subselect in it. If we allow this, the query will fail with an error:

      This version of MariaDB doesn't yet support 'SUBQUERY in ROW in left
      expression of IN/ALL/ANY'

unknown's avatar
unknown committed
3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079
  @param  conds    Condition to be checked
  @parm   result   Array to collect EQ_FIELD_OUTER elements describing
                   inner-vs-outer equalities the function has found.
  @return
    false - some inner-vs-outer equalities were found
    true  - otherwise.
*/

static bool find_inner_outer_equalities(Item **conds,
                                        Dynamic_array<EQ_FIELD_OUTER> &result)
{
  bool found=  FALSE;
  EQ_FIELD_OUTER element;
  if (is_cond_and(*conds))
  {
    List_iterator<Item> li(*((Item_cond*)*conds)->argument_list());
    Item *item;
3080
    bool allow_subselect= true;
unknown's avatar
unknown committed
3081 3082 3083 3084
    while ((item= li++))
    {
      if (item->type() == Item::FUNC_ITEM &&
          check_equality_for_exist2in((Item_func *)item,
3085
                                      allow_subselect,
unknown's avatar
unknown committed
3086 3087 3088 3089
                                      &element.local_field,
                                      &element.outer_exp))
      {
        found= TRUE;
3090
        allow_subselect= false;
3091
        element.eq_ref= li.ref();
unknown's avatar
unknown committed
3092 3093 3094 3095 3096 3097 3098
        if (result.append(element))
          goto alloc_err;
      }
    }
  }
  else if ((*conds)->type() == Item::FUNC_ITEM &&
           check_equality_for_exist2in((Item_func *)*conds,
3099
                                       true,
unknown's avatar
unknown committed
3100 3101 3102 3103
                                       &element.local_field,
                                       &element.outer_exp))
  {
    found= TRUE;
3104
    element.eq_ref= conds;
unknown's avatar
unknown committed
3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121
    if (result.append(element))
      goto alloc_err;
  }

  return !found;
alloc_err:
  return TRUE;
}

/**
  Converts EXISTS subquery to IN subquery if it is possible and has sense

  @param opt_arg         Pointer on THD

  @return TRUE in case of error and FALSE otherwise.
*/

3122
bool Item_exists_subselect::exists2in_processor(void *opt_arg)
unknown's avatar
unknown committed
3123 3124 3125 3126
{
  THD *thd= (THD *)opt_arg;
  SELECT_LEX *first_select=unit->first_select(), *save_select;
  JOIN *join= first_select->join;
3127
  Item **eq_ref= NULL;
unknown's avatar
unknown committed
3128 3129 3130 3131 3132 3133
  Item_ident *local_field= NULL;
  Item *outer_exp= NULL;
  Item *left_exp= NULL; Item_in_subselect *in_subs;
  Query_arena *arena= NULL, backup;
  int res= FALSE;
  List<Item> outer;
3134
  Dynamic_array<EQ_FIELD_OUTER> eqs(PSI_INSTRUMENT_MEM, 5, 5);
unknown's avatar
unknown committed
3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146
  bool will_be_correlated;
  DBUG_ENTER("Item_exists_subselect::exists2in_processor");

  if (!optimizer ||
      !optimizer_flag(thd, OPTIMIZER_SWITCH_EXISTS_TO_IN) ||
      (!is_top_level_item() && (!upper_not ||
                                !upper_not->is_top_level_item())) ||
      first_select->is_part_of_union() ||
      first_select->group_list.elements ||
      join->having ||
      first_select->with_sum_func ||
      !first_select->leaf_tables.elements||
Igor Babaev's avatar
Igor Babaev committed
3147 3148
      !join->conds ||
      with_recursive_reference)
unknown's avatar
unknown committed
3149 3150
    DBUG_RETURN(FALSE);

3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164
  /*
    EXISTS-to-IN coversion and ORDER BY ... LIMIT clause:

    - "[ORDER BY ...] LIMIT n" clause with a non-zero n does not affect
      the result of the EXISTS(...) predicate, and so we can discard
      it during the conversion.
    - "[ORDER BY ...] LIMIT m, n" can turn a non-empty resultset into empty
      one, so it affects tthe EXISTS(...) result and cannot be discarded.

    Disallow exists-to-in conversion if
    (1). three is a LIMIT which is not a basic constant
    (1a)  or is a "LIMIT 0" (see MDEV-19429)
    (2).  there is an OFFSET clause
  */
3165 3166 3167 3168
  if ((first_select->limit_params.select_limit &&                        // (1)
       (!first_select->limit_params.select_limit->basic_const_item() ||  // (1)
        first_select->limit_params.select_limit->val_uint() == 0)) ||    // (1a)
      first_select->limit_params.offset_limit)                           // (2)
3169 3170 3171 3172 3173 3174 3175
  {
    DBUG_RETURN(FALSE);
  }

  /* Disallow the conversion if offset + limit exists */

  DBUG_ASSERT(first_select->group_list.elements == 0 &&
unknown's avatar
unknown committed
3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194
              first_select->having == NULL);

  if (find_inner_outer_equalities(&join->conds, eqs))
    DBUG_RETURN(FALSE);

  DBUG_ASSERT(eqs.elements() != 0);

  save_select= thd->lex->current_select;
  thd->lex->current_select= first_select;

  /* check that the subquery has only dependencies we are going pull out */
  {
    List<Item> unused;
    Collect_deps_prm prm= {&unused,          // parameters
      unit->first_select()->nest_level_base, // nest_level_base
      0,                                     // count
      unit->first_select()->nest_level,      // nest_level
      FALSE                                  // collect
    };
3195
    walk(&Item::collect_outer_ref_processor, TRUE, &prm);
unknown's avatar
unknown committed
3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227
    DBUG_ASSERT(prm.count > 0);
    DBUG_ASSERT(prm.count >= (uint)eqs.elements());
    will_be_correlated= prm.count > (uint)eqs.elements();
    if (upper_not && will_be_correlated)
      goto out;
  }

  if ((uint)eqs.elements() > (first_select->item_list.elements +
                              first_select->select_n_reserved))
    goto out;

  arena= thd->activate_stmt_arena_if_needed(&backup);

  while (first_select->item_list.elements > (uint)eqs.elements())
  {
    first_select->item_list.pop();
    first_select->join->all_fields.elements--;
  }
  {
    List_iterator<Item> it(first_select->item_list);

    for (uint i= 0; i < (uint)eqs.elements(); i++)
    {
      Item *item= it++;
      eq_ref= eqs.at(i).eq_ref;
      local_field= eqs.at(i).local_field;
      outer_exp= eqs.at(i).outer_exp;
      /* Add the field to the SELECT_LIST */
      if (item)
        it.replace(local_field);
      else
      {
3228
        first_select->item_list.push_back(local_field, thd->mem_root);
unknown's avatar
unknown committed
3229 3230 3231 3232 3233
        first_select->join->all_fields.elements++;
      }
      first_select->ref_pointer_array[i]= (Item *)local_field;

      /* remove the parts from condition */
3234
      if (!upper_not || !local_field->maybe_null())
Monty's avatar
Monty committed
3235
        *eq_ref= new (thd->mem_root) Item_int(thd, 1);
unknown's avatar
unknown committed
3236 3237
      else
      {
Monty's avatar
Monty committed
3238 3239 3240 3241 3242 3243 3244 3245
        *eq_ref= new (thd->mem_root)
          Item_func_isnotnull(thd,
                              new (thd->mem_root)
                              Item_field(thd,
                                         ((Item_field*)(local_field->
                                                        real_item()))->context,
                                         ((Item_field*)(local_field->
                                                        real_item()))->field));
unknown's avatar
unknown committed
3246 3247 3248 3249 3250 3251
        if((*eq_ref)->fix_fields(thd, (Item **)eq_ref))
        {
          res= TRUE;
          goto out;
        }
      }
3252
      outer_exp->fix_after_pullout(unit->outer_select(), &outer_exp, FALSE);
unknown's avatar
unknown committed
3253
      outer_exp->update_used_tables();
3254
      outer.push_back(outer_exp, thd->mem_root);
unknown's avatar
unknown committed
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264
    }
  }

  join->conds->update_used_tables();

  /* make IN SUBQUERY and put outer_exp as left part */
  if (eqs.elements() == 1)
    left_exp= outer_exp;
  else
  {
Monty's avatar
Monty committed
3265
    if (!(left_exp= new (thd->mem_root) Item_row(thd, outer)))
unknown's avatar
unknown committed
3266 3267 3268 3269 3270 3271 3272 3273 3274
    {
      res= TRUE;
      goto out;
    }
  }

  /* make EXISTS->IN permanet (see Item_subselect::init()) */
  set_exists_transformed();

3275
  first_select->limit_params.select_limit= NULL;
3276
  first_select->limit_params.explicit_limit= FALSE;
3277
  if (!(in_subs= new (thd->mem_root) Item_in_subselect(thd, left_exp,
3278
                                                         first_select)))
unknown's avatar
unknown committed
3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307
  {
    res= TRUE;
    goto out;
  }
  in_subs->set_exists_transformed();
  optimizer->arguments()[0]= left_exp;
  optimizer->arguments()[1]= in_subs;
  in_subs->optimizer= optimizer;
  DBUG_ASSERT(is_top_level_item() ||
              (upper_not && upper_not->is_top_level_item()));
  in_subs->top_level_item();
  {
    SELECT_LEX *current= thd->lex->current_select;
    optimizer->reset_cache(); // renew cache, and we will not keep it
    thd->lex->current_select= unit->outer_select();
    DBUG_ASSERT(optimizer);
    if (optimizer->fix_left(thd))
    {
      res= TRUE;
      /*
        We should not restore thd->lex->current_select because it will be
        reset on exit from this procedure
      */
      goto out;
    }
    /*
      As far as  Item_ref_in_optimizer do not substitute itself on fix_fields
      we can use same item for all selects.
    */
Monty's avatar
Monty committed
3308 3309 3310
    in_subs->expr= new (thd->mem_root)
      Item_direct_ref(thd, &first_select->context,
                      (Item**)optimizer->get_cache(),
3311 3312
                      no_matter_name,
                      in_left_expr_name);
unknown's avatar
unknown committed
3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330
    if (in_subs->fix_fields(thd, optimizer->arguments() + 1))
    {
      res= TRUE;
      /*
        We should not restore thd->lex->current_select because it will be
        reset on exit from this procedure
      */
      goto out;
    }
    {
      /* Move dependence list */
      List_iterator_fast<Ref_to_outside> it(upper_refs);
      Ref_to_outside *upper;
      while ((upper= it++))
      {
        uint i;
        for (i= 0; i < (uint)eqs.elements(); i++)
          if (eqs.at(i).outer_exp->
3331
              walk(&Item::find_item_processor, TRUE, upper->item))
unknown's avatar
unknown committed
3332
            break;
3333 3334 3335
        DBUG_ASSERT(thd->stmt_arena->is_stmt_prepare_or_first_stmt_execute() ||
                    thd->stmt_arena->is_conventional());
        DBUG_ASSERT(thd->stmt_arena->mem_root == thd->mem_root);
unknown's avatar
unknown committed
3336
        if (i == (uint)eqs.elements() &&
3337 3338
            (in_subs->upper_refs.push_back(
               upper, thd->mem_root)))
unknown's avatar
unknown committed
3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366
          goto out;
      }
    }
    in_subs->update_used_tables();
    /*
      The engine of the subquery is fixed so above fix_fields() is not
      complete and should be fixed
    */
    in_subs->upper_refs= upper_refs;
    upper_refs.empty();
    thd->lex->current_select= current;
  }

  DBUG_ASSERT(unit->item == in_subs);
  DBUG_ASSERT(join == first_select->join);
  /*
    Fix dependency info
  */
  in_subs->is_correlated= will_be_correlated;
  if (!will_be_correlated)
  {
    first_select->uncacheable&= ~UNCACHEABLE_DEPENDENT_GENERATED;
    unit->uncacheable&= ~UNCACHEABLE_DEPENDENT_GENERATED;
  }
  /*
    set possible optimization strategies
  */
  in_subs->emb_on_expr_nest= emb_on_expr_nest;
3367 3368 3369 3370 3371 3372 3373 3374

  {
    OPT_TRACE_TRANSFORM(thd, trace_wrapper, trace_transform,
  		        in_subs->get_select_lex()->select_number,
  			"EXISTS (SELECT)", "IN (SELECT)");
    trace_transform.add( "upper_not", ( upper_not?true:false ) );
  }

unknown's avatar
unknown committed
3375 3376 3377 3378 3379 3380 3381 3382 3383 3384
  res= check_and_do_in_subquery_rewrites(join);
  first_select->join->prepare_stage2();

  first_select->fix_prepare_information(thd, &join->conds, &join->having);

  if (upper_not)
  {
    Item *exp;
    if (eqs.elements() == 1)
    {
3385
      exp= (optimizer->arguments()[0]->maybe_null() ?
Monty's avatar
Monty committed
3386 3387 3388 3389 3390 3391 3392 3393
            (Item*) new (thd->mem_root)
            Item_cond_and(thd,
                          new (thd->mem_root)
                          Item_func_isnotnull(thd,
                                              new (thd->mem_root)
                                              Item_direct_ref(thd,
                                                              &unit->outer_select()->context,
                                                              optimizer->arguments(),
3394 3395
                                                              no_matter_name,
                                                              exists_outer_expr_name)),
Monty's avatar
Monty committed
3396
                          optimizer) :
unknown's avatar
unknown committed
3397 3398 3399 3400
            (Item *)optimizer);
    }
    else
    {
3401
      List<Item> *and_list= new (thd->mem_root) List<Item>;
unknown's avatar
unknown committed
3402 3403 3404 3405 3406
      if (!and_list)
      {
        res= TRUE;
        goto out;
      }
3407
      for (size_t i= 0; i < eqs.elements(); i++)
unknown's avatar
unknown committed
3408
      {
3409
        if (optimizer->arguments()[0]->maybe_null())
unknown's avatar
unknown committed
3410 3411
        {
          and_list->
Monty's avatar
Monty committed
3412 3413 3414 3415 3416
            push_front(new (thd->mem_root)
                       Item_func_isnotnull(thd,
                                           new (thd->mem_root)
                                           Item_direct_ref(thd,
                                                           &unit->outer_select()->context,
3417
                                                           optimizer->arguments()[0]->addr((int)i),
3418 3419
                                                           no_matter_name,
                                                           exists_outer_expr_name)),
3420
                       thd->mem_root);
unknown's avatar
unknown committed
3421 3422 3423 3424
        }
      }
      if (and_list->elements > 0)
      {
3425
        and_list->push_front(optimizer, thd->mem_root);
Monty's avatar
Monty committed
3426
        exp= new (thd->mem_root) Item_cond_and(thd, *and_list);
unknown's avatar
unknown committed
3427 3428 3429 3430 3431
      }
      else
        exp= optimizer;
    }
    upper_not->arguments()[0]= exp;
3432
    if (exp->fix_fields_if_needed(thd, upper_not->arguments()))
unknown's avatar
unknown committed
3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446
    {
      res= TRUE;
      goto out;
    }
  }

out:
  thd->lex->current_select= save_select;
  if (arena)
    thd->restore_active_arena(arena, &backup);
  DBUG_RETURN(res);
}


unknown's avatar
unknown committed
3447
/**
unknown's avatar
unknown committed
3448
  Prepare IN/ALL/ANY/SOME subquery transformation and call the appropriate
unknown's avatar
unknown committed
3449
  transformation function.
3450

unknown's avatar
unknown committed
3451 3452
  @param join    JOIN object of transforming subquery

3453 3454
  @notes
  To decide which transformation procedure (scalar or row) applicable here
unknown's avatar
unknown committed
3455 3456
  we have to call fix_fields() for the left expression to be able to call
  cols() method on it. Also this method makes arena management for
3457 3458
  underlying transformation methods.

unknown's avatar
unknown committed
3459 3460
  @retval  false  OK
  @retval  true   Error
3461 3462
*/

unknown's avatar
unknown committed
3463
bool
3464
Item_in_subselect::select_in_like_transformer(JOIN *join)
3465
{
3466
  Query_arena *arena= 0, backup;
3467
  SELECT_LEX *current= thd->lex->current_select;
3468
  THD_WHERE save_where= thd->where;
unknown's avatar
unknown committed
3469
  bool trans_res= true;
3470 3471 3472
  bool result;

  DBUG_ENTER("Item_in_subselect::select_in_like_transformer");
3473
  DBUG_ASSERT(thd == join->thd);
3474
  thd->where= THD_WHERE::IN_ALL_ANY_SUBQUERY;
3475 3476 3477 3478

  /*
    In some optimisation cases we will not need this Item_in_optimizer
    object, but we can't know it here, but here we need address correct
Ian Gilfillan's avatar
Ian Gilfillan committed
3479
    reference on left expression.
3480

Sergey Petrunya's avatar
Sergey Petrunya committed
3481 3482
    note: we won't need Item_in_optimizer when handling degenerate cases
    like "... IN (SELECT 1)"
3483
  */
3484
  arena= thd->activate_stmt_arena_if_needed(&backup);
3485 3486
  if (!optimizer)
  {
3487 3488
    optimizer= new (thd->mem_root) Item_in_optimizer(thd, left_expr_orig, this);
    if ((result= !optimizer))
3489
      goto out;
3490 3491
  }

3492
  thd->lex->current_select= current->return_after_parsing();
unknown's avatar
unknown committed
3493
  result= optimizer->fix_left(thd);
3494
  thd->lex->current_select= current;
3495 3496 3497 3498 3499 3500 3501 3502

  if (changed)
  {
    trans_res= false;
    goto out;
  }


3503
  if (result)
3504
    goto out;
3505 3506 3507 3508 3509 3510

  /*
    Both transformers call fix_fields() only for Items created inside them,
    and all that items do not make permanent changes in current item arena
    which allow to us call them with changed arena (if we do not know nature
    of Item, we have to call fix_fields() for it only with original arena to
Ian Gilfillan's avatar
Ian Gilfillan committed
3511
    avoid memory leak)
3512
  */
unknown's avatar
unknown committed
3513
  if (left_expr->cols() == 1)
unknown's avatar
unknown committed
3514
    trans_res= single_value_transformer(join);
3515 3516 3517 3518 3519
  else
  {
    /* we do not support row operation for ALL/ANY/SOME */
    if (func != &eq_creator)
    {
unknown's avatar
unknown committed
3520
      if (arena)
unknown's avatar
unknown committed
3521
        thd->restore_active_arena(arena, &backup);
3522
      my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
unknown's avatar
unknown committed
3523
      DBUG_RETURN(true);
3524
    }
unknown's avatar
unknown committed
3525
    trans_res= row_value_transformer(join);
3526
  }
3527
out:
3528
  if (arena)
unknown's avatar
unknown committed
3529
    thd->restore_active_arena(arena, &backup);
3530
  thd->where= save_where;
unknown's avatar
unknown committed
3531
  DBUG_RETURN(trans_res);
unknown's avatar
unknown committed
3532 3533
}

3534

3535
void Item_in_subselect::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
3536
{
3537 3538
  if (test_strategy(SUBS_IN_TO_EXISTS) &&
      !(query_type & QT_PARSABLE))
3539
    str->append(STRING_WITH_LEN("<exists>"));
unknown's avatar
unknown committed
3540 3541
  else
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
3542
    left_expr->print_parenthesised(str, query_type, precedence());
3543
    str->append(STRING_WITH_LEN(" in "));
unknown's avatar
unknown committed
3544
  }
3545
  Item_subselect::print(str, query_type);
unknown's avatar
unknown committed
3546 3547
}

3548
bool Item_exists_subselect::fix_fields(THD *thd, Item **ref)
unknown's avatar
unknown committed
3549 3550 3551
{
  DBUG_ENTER("Item_exists_subselect::fix_fields");
  if (exists_transformed)
Monty's avatar
Monty committed
3552
    DBUG_RETURN( !( (*ref)= new (thd->mem_root) Item_int(thd, 1)));
3553
  DBUG_RETURN(Item_subselect::fix_fields(thd, ref));
unknown's avatar
unknown committed
3554 3555
}

unknown's avatar
unknown committed
3556

3557
bool Item_in_subselect::fix_fields(THD *thd_arg, Item **ref)
3558
{
3559 3560
  uint outer_cols_num;
  List<Item> *inner_cols;
3561
  THD_WHERE save_where= thd_arg->where;
unknown's avatar
unknown committed
3562
  DBUG_ENTER("Item_in_subselect::fix_fields");
3563

3564 3565
  thd= thd_arg;
  DBUG_ASSERT(unit->thd == thd);
3566

unknown's avatar
unknown committed
3567
  if (test_strategy(SUBS_SEMI_JOIN))
Monty's avatar
Monty committed
3568
    DBUG_RETURN( !( (*ref)= new (thd->mem_root) Item_int(thd, 1)) );
3569

3570
  thd->where= THD_WHERE::IN_ALL_ANY_SUBQUERY;
3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593
  /*
    Check if the outer and inner IN operands match in those cases when we
    will not perform IN=>EXISTS transformation. Currently this is when we
    use subquery materialization.

    The condition below is true when this method was called recursively from
    inside JOIN::prepare for the JOIN object created by the call chain
    Item_subselect::fix_fields -> subselect_single_select_engine::prepare,
    which creates a JOIN object for the subquery and calls JOIN::prepare for
    the JOIN of the subquery.
    Notice that in some cases, this doesn't happen, and the check_cols()
    test for each Item happens later in
    Item_in_subselect::row_value_in_to_exists_transformer.
    The reason for this mess is that our JOIN::prepare phase works top-down
    instead of bottom-up, so we first do name resoluton and semantic checks
    for the outer selects, then for the inner.
  */
  if (engine &&
      engine->engine_type() == subselect_engine::SINGLE_SELECT_ENGINE &&
      ((subselect_single_select_engine*)engine)->join)
  {
    outer_cols_num= left_expr->cols();

3594
    if (unit->is_unit_op())
3595 3596 3597 3598 3599 3600
      inner_cols= &(unit->types);
    else
      inner_cols= &(unit->first_select()->item_list);
    if (outer_cols_num != inner_cols->elements)
    {
      my_error(ER_OPERAND_COLUMNS, MYF(0), outer_cols_num);
3601
      goto err;
3602 3603 3604 3605 3606 3607 3608 3609 3610
    }
    if (outer_cols_num > 1)
    {
      List_iterator<Item> inner_col_it(*inner_cols);
      Item *inner_col;
      for (uint i= 0; i < outer_cols_num; i++)
      {
        inner_col= inner_col_it++;
        if (inner_col->check_cols(left_expr->element_index(i)->cols()))
3611
          goto err;
3612 3613 3614 3615
      }
    }
  }

3616
  if (left_expr && left_expr->fix_fields_if_needed(thd_arg, &left_expr))
3617
    goto err;
3618
  else
3619
  if (Item_subselect::fix_fields(thd_arg, ref))
3620
    goto err;
3621
  base_flags|= item_base_t::FIXED;
3622
  thd->where= save_where;
unknown's avatar
unknown committed
3623
  DBUG_RETURN(FALSE);
3624 3625 3626

err:
  thd->where= save_where;
3627
  DBUG_RETURN(TRUE);
3628 3629 3630
}


3631 3632
void Item_in_subselect::fix_after_pullout(st_select_lex *new_parent,
                                          Item **ref, bool merge)
unknown's avatar
unknown committed
3633
{
3634 3635
  left_expr->fix_after_pullout(new_parent, &left_expr, merge);
  Item_subselect::fix_after_pullout(new_parent, ref, merge);
3636
  used_tables_cache |= left_expr->used_tables();
unknown's avatar
unknown committed
3637 3638
}

3639
void Item_in_subselect::update_used_tables()
unknown's avatar
unknown committed
3640
{
3641 3642
  Item_subselect::update_used_tables();
  left_expr->update_used_tables();
3643 3644
  //used_tables_cache |= left_expr->used_tables();
  used_tables_cache= Item_subselect::used_tables() | left_expr->used_tables();
unknown's avatar
unknown committed
3645 3646
}

3647

3648
/**
3649 3650
  Try to create and initialize an engine to compute a subselect via
  materialization.
3651 3652

  @details
3653 3654 3655 3656 3657
  The method creates a new engine for materialized execution, and initializes
  the engine. The initialization may fail
  - either because it wasn't possible to create the needed temporary table
    and its index,
  - or because of a memory allocation error,
3658 3659 3660 3661 3662

  @returns
    @retval TRUE  memory allocation error occurred
    @retval FALSE an execution method was chosen successfully
*/
unknown's avatar
unknown committed
3663

3664
bool Item_in_subselect::setup_mat_engine()
3665
{
3666 3667
  subselect_hash_sj_engine       *mat_engine= NULL;
  subselect_single_select_engine *select_engine;
3668

3669
  DBUG_ENTER("Item_in_subselect::setup_mat_engine");
3670
  DBUG_ASSERT(thd);
3671

3672 3673
  /*
    The select_engine (that executes transformed IN=>EXISTS subselects) is
Ian Gilfillan's avatar
Ian Gilfillan committed
3674
    pre-created at parse time, and is stored in statement memory (preserved
3675 3676 3677 3678
    across PS executions).
  */
  DBUG_ASSERT(engine->engine_type() == subselect_engine::SINGLE_SELECT_ENGINE);
  select_engine= (subselect_single_select_engine*) engine;
3679

3680
  /* Create/initialize execution objects. */
3681 3682
  if (!(mat_engine= new (thd->mem_root)
        subselect_hash_sj_engine(thd, this, select_engine)))
3683
    DBUG_RETURN(TRUE);
3684

3685 3686
  if (mat_engine->prepare(thd) ||
      mat_engine->init(&select_engine->join->fields_list,
Sergey Petrunya's avatar
Sergey Petrunya committed
3687
                       engine->get_identifier()))
3688
    DBUG_RETURN(TRUE);
3689

3690 3691
  engine= mat_engine;
  DBUG_RETURN(FALSE);
3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709
}


/**
  Initialize the cache of the left operand of the IN predicate.

  @note This method has the same purpose as alloc_group_fields(),
  but it takes a different kind of collection of items, and the
  list we push to is dynamically allocated.

  @retval TRUE  if a memory allocation error occurred or the cache is
                not applicable to the current query
  @retval FALSE if success
*/

bool Item_in_subselect::init_left_expr_cache()
{
  JOIN *outer_join;
3710
  DBUG_ASSERT(thd);
3711 3712 3713 3714 3715 3716

  outer_join= unit->outer_select()->join;
  /*
    An IN predicate might be evaluated in a query for which all tables have
    been optimzied away.
  */ 
3717
  if (!outer_join || !outer_join->table_count || !outer_join->tables_list)
3718 3719
    return TRUE;

3720
  if (!(left_expr_cache= new (thd->mem_root) List<Cached_item>))
3721 3722 3723 3724 3725 3726
    return TRUE;

  for (uint i= 0; i < left_expr->cols(); i++)
  {
    Cached_item *cur_item_cache= new_Cached_item(thd,
                                                 left_expr->element_index(i),
3727
                                                 FALSE);
3728 3729
    if (!cur_item_cache || left_expr_cache->push_front(cur_item_cache,
                                                       thd->mem_root))
3730 3731 3732 3733 3734 3735
      return TRUE;
  }
  return FALSE;
}


3736
bool Item_in_subselect::init_cond_guards()
3737
{
3738
  DBUG_ASSERT(thd);
3739
  uint cols_num= left_expr->cols();
3740
  if (!is_top_level_item() && !pushed_cond_guards &&
3741
      (left_expr->maybe_null() || cols_num > 1))
3742
  {
3743
    if (!(pushed_cond_guards= thd->alloc<bool>(cols_num)))
3744 3745 3746 3747 3748
        return TRUE;
    for (uint i= 0; i < cols_num; i++)
      pushed_cond_guards[i]= TRUE;
  }
  return FALSE;
3749 3750
}

3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770
/**
  Initialize the tracker which will be used to provide information for
  the output of EXPLAIN and ANALYZE
*/
void Item_in_subselect::init_subq_materialization_tracker(THD *thd)
{
  if (test_strategy(SUBS_MATERIALIZATION | SUBS_PARTIAL_MATCH_ROWID_MERGE |
                    SUBS_PARTIAL_MATCH_TABLE_SCAN))
  {
    Explain_query *qw= thd->lex->explain;
    DBUG_ASSERT(qw);
    Explain_node *node= qw->get_node(unit->first_select()->select_number);
    if (!node)
      return;
    node->subq_materialization= new(qw->mem_root)
        Explain_subq_materialization(qw->mem_root);
    materialization_tracker= node->subq_materialization->get_tracker();
  }
}

3771

unknown's avatar
unknown committed
3772
bool
unknown's avatar
unknown committed
3773
Item_allany_subselect::select_transformer(JOIN *join)
unknown's avatar
unknown committed
3774
{
3775
  DBUG_ENTER("Item_allany_subselect::select_transformer");
unknown's avatar
unknown committed
3776
  DBUG_ASSERT((in_strategy & ~(SUBS_MAXMIN_INJECTED | SUBS_MAXMIN_ENGINE |
unknown's avatar
unknown committed
3777
                               SUBS_IN_TO_EXISTS | SUBS_STRATEGY_CHOSEN)) == 0);
3778 3779
  if (upper_item)
    upper_item->show= 1;
3780
  DBUG_RETURN(select_in_like_transformer(join));
unknown's avatar
unknown committed
3781 3782
}

unknown's avatar
unknown committed
3783

3784
void Item_allany_subselect::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
3785
{
3786 3787
  if (test_strategy(SUBS_IN_TO_EXISTS) &&
      !(query_type & QT_PARSABLE))
3788
    str->append(STRING_WITH_LEN("<exists>"));
unknown's avatar
unknown committed
3789 3790
  else
  {
3791
    left_expr->print(str, query_type);
unknown's avatar
unknown committed
3792
    str->append(' ');
Monty's avatar
Monty committed
3793 3794
    const char *name= func->symbol(all);
    str->append(name, strlen(name));
unknown's avatar
unknown committed
3795
    str->append(all ? " all " : " any ", 5);
unknown's avatar
unknown committed
3796
  }
3797
  Item_subselect::print(str, query_type);
unknown's avatar
unknown committed
3798 3799 3800
}


unknown's avatar
unknown committed
3801 3802
void Item_allany_subselect::no_rows_in_result()
{
unknown's avatar
unknown committed
3803 3804 3805 3806 3807 3808 3809 3810
  /*
    Subquery predicates outside of the SELECT list must be evaluated in order
    to possibly filter the special result row generated for implicit grouping
    if the subquery is in the HAVING clause.
    If the predicate is constant, we need its actual value in the only result
    row for queries with implicit grouping.
  */
  if (parsing_place != SELECT_LIST || const_item())
unknown's avatar
unknown committed
3811
    return;
unknown's avatar
unknown committed
3812 3813 3814 3815 3816 3817 3818
  value= 0;
  null_value= 0;
  was_null= 0;
  make_const();
}


3819 3820 3821 3822 3823 3824 3825 3826
void subselect_engine::set_thd(THD *thd_arg)
{
  thd= thd_arg;
  if (result)
    result->set_thd(thd_arg);
}


3827
subselect_single_select_engine::
3828
subselect_single_select_engine(st_select_lex *select,
3829
			       select_result_interceptor *result_arg,
3830
			       Item_subselect *item_arg)
3831
  :subselect_engine(item_arg, result_arg),
3832
   prepared(0), executed(0),
3833
   select_lex(select), join(0)
unknown's avatar
unknown committed
3834
{
3835
  select_lex->master_unit()->item= item_arg;
unknown's avatar
unknown committed
3836 3837
}

3838 3839 3840 3841
int subselect_single_select_engine::get_identifier()
{
  return select_lex->select_number; 
}
unknown's avatar
unknown committed
3842

Igor Babaev's avatar
Igor Babaev committed
3843 3844 3845 3846 3847
void subselect_single_select_engine::force_reexecution()
{ 
  executed= false;
}

unknown's avatar
unknown committed
3848 3849
void subselect_single_select_engine::cleanup()
{
unknown's avatar
unknown committed
3850
  DBUG_ENTER("subselect_single_select_engine::cleanup");
3851
  prepared= executed= 0;
3852
  join= 0;
3853
  result->cleanup();
3854
  select_lex->uncacheable&= ~UNCACHEABLE_DEPENDENT_INJECTED;
unknown's avatar
unknown committed
3855
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3856
}
3857

unknown's avatar
unknown committed
3858 3859 3860 3861 3862

void subselect_union_engine::cleanup()
{
  DBUG_ENTER("subselect_union_engine::cleanup");
  unit->reinit_exec_mechanism();
3863
  result->cleanup();
3864 3865 3866
  unit->uncacheable&= ~UNCACHEABLE_DEPENDENT_INJECTED;
  for (SELECT_LEX *sl= unit->first_select(); sl; sl= sl->next_select())
    sl->uncacheable&= ~UNCACHEABLE_DEPENDENT_INJECTED;
unknown's avatar
unknown committed
3867
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3868
}
3869

unknown's avatar
unknown committed
3870

3871 3872 3873 3874 3875
bool subselect_union_engine::is_executed() const
{
  return unit->executed;
}

Igor Babaev's avatar
Igor Babaev committed
3876 3877 3878 3879 3880
void subselect_union_engine::force_reexecution()
{ 
  unit->executed= false;
}

3881

3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899
/*
  Check if last execution of the subquery engine produced any rows

  SYNOPSIS
    subselect_union_engine::no_rows()

  DESCRIPTION
    Check if last execution of the subquery engine produced any rows. The
    return value is undefined if last execution ended in an error.

  RETURN
    TRUE  - Last subselect execution has produced no rows
    FALSE - Otherwise
*/

bool subselect_union_engine::no_rows()
{
  /* Check if we got any rows when reading UNION result from temp. table: */
3900 3901 3902 3903 3904 3905 3906 3907
  if (unit->fake_select_lex)
  {
    JOIN *join= unit->fake_select_lex->join;
    if (join)
      return MY_TEST(!join->send_records);
    return false;
  }
  return MY_TEST(!(((select_union_direct *)(unit->get_union_result()))
3908
                                                            ->send_records));
3909 3910
}

3911

unknown's avatar
unknown committed
3912 3913 3914
void subselect_uniquesubquery_engine::cleanup()
{
  DBUG_ENTER("subselect_uniquesubquery_engine::cleanup");
Sergey Petrunya's avatar
Sergey Petrunya committed
3915 3916 3917 3918 3919 3920 3921 3922
  /* 
    Note for mergers: we don't have to, and actually must not de-initialize
    tab->table->file here.
    - We don't have to, because free_tmp_table() will call ha_index_or_rnd_end
    - We must not do it, because tab->table may be a derived table which 
      has been already dropped by close_thread_tables(), while we here are
      called from cleanup_items()
  */
unknown's avatar
unknown committed
3923 3924 3925 3926
  DBUG_VOID_RETURN;
}


3927
subselect_union_engine::subselect_union_engine(st_select_lex_unit *u,
3928
					       select_result_interceptor *result_arg,
3929
					       Item_subselect *item_arg)
3930
  :subselect_engine(item_arg, result_arg)
unknown's avatar
unknown committed
3931 3932
{
  unit= u;
3933
  unit->item= item_arg;
unknown's avatar
unknown committed
3934 3935
}

3936

3937 3938 3939 3940
/**
  Create and prepare the JOIN object that represents the query execution
  plan for the subquery.

3941
  @details
3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962
  This method is called from Item_subselect::fix_fields. For prepared
  statements it is called both during the PREPARE and EXECUTE phases in the
  following ways:
  - During PREPARE the optimizer needs some properties
    (join->fields_list.elements) of the JOIN to proceed with preparation of
    the remaining query (namely to complete ::fix_fields for the subselect
    related classes. In the end of PREPARE the JOIN is deleted.
  - When we EXECUTE the query, Item_subselect::fix_fields is called again, and
    the JOIN object is re-created again, prepared and executed. In the end of
    execution it is deleted.
  In all cases the JOIN is created in runtime memory (not in the permanent
  memory root).

  @todo
  Re-check what properties of 'join' are needed during prepare, and see if
  we can avoid creating a JOIN during JOIN::prepare of the outer join.

  @retval 0  if success
  @retval 1  if error
*/

3963
int subselect_single_select_engine::prepare(THD *thd)
unknown's avatar
unknown committed
3964
{
unknown's avatar
unknown committed
3965 3966
  if (prepared)
    return 0;
3967
  set_thd(thd);
3968 3969 3970 3971
  if (select_lex->join)
  {
    select_lex->cleanup();
  }
3972 3973 3974
  join= (new (thd->mem_root)
         JOIN(thd, select_lex->item_list,
              select_lex->options | SELECT_NO_UNLOCK, result));
3975
  if (!join || !result)
3976
    return 1; /* Fatal error is set already. */
unknown's avatar
unknown committed
3977
  prepared= 1;
3978 3979
  SELECT_LEX *save_select= thd->lex->current_select;
  thd->lex->current_select= select_lex;
3980
  if (join->prepare(select_lex->table_list.first,
unknown's avatar
unknown committed
3981
		    select_lex->where,
unknown's avatar
unknown committed
3982 3983
		    select_lex->order_list.elements +
		    select_lex->group_list.elements,
3984
		    select_lex->order_list.first,
3985
                    false,
3986
		    select_lex->group_list.first,
unknown's avatar
unknown committed
3987
		    select_lex->having,
3988
		    NULL, select_lex,
3989
		    select_lex->master_unit()))
unknown's avatar
unknown committed
3990
    return 1;
3991
  thd->lex->current_select= save_select;
unknown's avatar
unknown committed
3992 3993 3994
  return 0;
}

3995
int subselect_union_engine::prepare(THD *thd_arg)
unknown's avatar
unknown committed
3996
{
3997
  set_thd(thd_arg);
3998
  return unit->prepare(unit->derived, result, SELECT_NO_UNLOCK);
unknown's avatar
unknown committed
3999 4000
}

4001
int subselect_uniquesubquery_engine::prepare(THD *)
4002
{
4003 4004
  /* Should never be called. */
  DBUG_ASSERT(FALSE);
4005 4006 4007
  return 1;
}

4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029

/*
  Check if last execution of the subquery engine produced any rows

  SYNOPSIS
    subselect_single_select_engine::no_rows()

  DESCRIPTION
    Check if last execution of the subquery engine produced any rows. The
    return value is undefined if last execution ended in an error.

  RETURN
    TRUE  - Last subselect execution has produced no rows
    FALSE - Otherwise
*/

bool subselect_single_select_engine::no_rows()
{ 
  return !item->assigned();
}


4030 4031
/**
 Makes storage for the output values for the subquery and calcuates
4032
 their data and column types and their nullability.
4033 4034
*/
bool subselect_engine::set_row(List<Item> &item_list, Item_cache **row)
4035
{
4036
  Item *sel_item;
4037
  List_iterator_fast<Item> li(item_list);
4038
  set_handler(&type_handler_varchar);
4039 4040 4041
  for (uint i= 0; (sel_item= li++); i++)
  {
    item->max_length= sel_item->max_length;
4042
    set_handler(sel_item->type_handler());
4043
    item->decimals= sel_item->decimals;
4044
    item->unsigned_flag= sel_item->unsigned_flag;
4045
    maybe_null= sel_item->maybe_null();
4046
    if (!(row[i]= sel_item->get_cache(thd)))
4047
      return TRUE;
4048
    row[i]->setup(thd, sel_item);
4049
 //psergey-backport-timours:   row[i]->store(sel_item);
4050
  }
4051
  if (item_list.elements > 1)
4052
    set_handler(&type_handler_row);
4053
  return FALSE;
4054 4055
}

4056
bool subselect_single_select_engine::fix_length_and_dec(Item_cache **row)
4057
{
4058
  DBUG_ASSERT(row || select_lex->item_list.elements==1);
4059 4060
  if (set_row(select_lex->item_list, row))
    return TRUE;
4061
  item->collation.set(row[0]->collation);
4062 4063
  if (Type_extra_attributes *eattr= item->type_extra_attributes_addr())
    eattr[0]= row[0]->type_extra_attributes();
unknown's avatar
unknown committed
4064 4065
  if (cols() != 1)
    maybe_null= 0;
4066
  return FALSE;
4067 4068
}

4069
bool subselect_union_engine::fix_length_and_dec(Item_cache **row)
4070 4071 4072 4073
{
  DBUG_ASSERT(row || unit->first_select()->item_list.elements==1);

  if (unit->first_select()->item_list.elements == 1)
4074
  {
4075
    if (set_row(unit->item_list, row))
4076
      return TRUE;
4077 4078
    item->collation.set(row[0]->collation);
  }
4079 4080
  else
  {
4081
    bool maybe_null_saved= maybe_null;
4082
    if (set_row(unit->item_list, row))
4083
      return TRUE;
4084
    maybe_null= maybe_null_saved;
4085
  }
4086
  return FALSE;
4087
}
unknown's avatar
unknown committed
4088

4089
bool subselect_uniquesubquery_engine::fix_length_and_dec(Item_cache **row)
4090 4091 4092
{
  //this never should be called
  DBUG_ASSERT(0);
4093
  return FALSE;
4094 4095
}

Konstantin Osipov's avatar
Konstantin Osipov committed
4096 4097
int  read_first_record_seq(JOIN_TAB *tab);
int rr_sequential(READ_RECORD *info);
4098 4099 4100
int join_read_always_key_or_null(JOIN_TAB *tab);
int join_read_next_same_or_null(READ_RECORD *info);

4101
int subselect_single_select_engine::exec()
unknown's avatar
unknown committed
4102
{
4103
  THD_WHERE save_where= thd->where;
unknown's avatar
unknown committed
4104 4105
  SELECT_LEX *save_select= thd->lex->current_select;
  thd->lex->current_select= select_lex;
4106
  bool exec_error= 0;
4107
  DBUG_ENTER("subselect_single_select_engine::exec");
Michael Widenius's avatar
Michael Widenius committed
4108

4109
  if (join->optimization_state == JOIN::NOT_OPTIMIZED)
unknown's avatar
unknown committed
4110
  {
4111 4112
    SELECT_LEX_UNIT *unit= select_lex->master_unit();

4113
    unit->set_limit(unit->global_parameters());
unknown's avatar
unknown committed
4114 4115
    if (join->optimize())
    {
unknown's avatar
unknown committed
4116
      thd->where= save_where;
4117
      executed= 1;
unknown's avatar
unknown committed
4118
      thd->lex->current_select= save_select;
unknown's avatar
unknown committed
4119
      DBUG_RETURN(join->error ? join->error : 1);
unknown's avatar
unknown committed
4120
    }
unknown's avatar
unknown committed
4121
    if (!select_lex->uncacheable && thd->lex->describe && 
4122
        !(join->select_options & SELECT_DESCRIBE))
unknown's avatar
unknown committed
4123
    {
4124 4125 4126
      item->update_used_tables();
      if (item->const_item())
      {
4127 4128 4129 4130 4131 4132 4133 4134
        /*
          It's necessary to keep original JOIN table because
          create_sort_index() function may overwrite original
          JOIN_TAB::type and wrong optimization method can be
          selected on re-execution.
        */
        select_lex->uncacheable|= UNCACHEABLE_EXPLAIN;
        select_lex->master_unit()->uncacheable|= UNCACHEABLE_EXPLAIN;
4135
      }
unknown's avatar
unknown committed
4136
    }
4137
    if (item->engine_changed(this))
Igor Babaev's avatar
Igor Babaev committed
4138 4139
    {
      thd->lex->current_select= save_select;
4140
      DBUG_RETURN(1);
Igor Babaev's avatar
Igor Babaev committed
4141
    }
unknown's avatar
unknown committed
4142
  }
4143 4144 4145
  if (select_lex->uncacheable &&
      select_lex->uncacheable != UNCACHEABLE_EXPLAIN
      && executed)
unknown's avatar
unknown committed
4146 4147
  {
    if (join->reinit())
4148
    {
unknown's avatar
unknown committed
4149 4150
      thd->where= save_where;
      thd->lex->current_select= save_select;
unknown's avatar
unknown committed
4151
      DBUG_RETURN(1);
4152
    }
4153
    item->reset();
unknown's avatar
unknown committed
4154 4155 4156 4157
    item->assigned((executed= 0));
  }
  if (!executed)
  {
4158
    item->reset_value_registration();
4159 4160 4161
    JOIN_TAB *changed_tabs[MAX_TABLES];
    JOIN_TAB **last_changed_tab= changed_tabs;
    if (item->have_guarded_conds())
4162 4163
    {
      /*
4164
        For at least one of the pushed predicates the following is true:
4165 4166
        We should not apply optimizations based on the condition that was
        pushed down into the subquery. Those optimizations are ref[_or_null]
Ian Gilfillan's avatar
Ian Gilfillan committed
4167
        accesses. Change them to be full table scans.
4168
      */
4169 4170 4171
      JOIN_TAB *tab;
      for (tab= first_linear_tab(join, WITH_BUSH_ROOTS, WITHOUT_CONST_TABLES);
           tab; tab= next_linear_tab(join, tab, WITH_BUSH_ROOTS))
4172
      {
4173
        if (tab && tab->keyuse)
4174
        {
4175 4176 4177 4178 4179 4180
          for (uint i= 0; i < tab->ref.key_parts; i++)
          {
            bool *cond_guard= tab->ref.cond_guards[i];
            if (cond_guard && !*cond_guard)
            {
              /* Change the access method to full table scan */
4181
              tab->save_read_first_record= tab->read_first_record;
4182 4183
              tab->save_read_record= tab->read_record.read_record_func;
              tab->read_record.read_record_func= rr_sequential;
Konstantin Osipov's avatar
Konstantin Osipov committed
4184
              tab->read_first_record= read_first_record_seq;
4185 4186
              if (tab->rowid_filter)
                tab->table->file->disable_pushed_rowid_filter();
4187 4188
              tab->read_record.thd= join->thd;
              tab->read_record.ref_length= tab->table->file->ref_length;
4189
              tab->read_record.unlock_row= rr_unlock_row;
4190 4191 4192 4193
              *(last_changed_tab++)= tab;
              break;
            }
          }
4194 4195 4196 4197
        }
      }
    }
    
4198
    exec_error= join->exec();
4199

4200 4201
    /* Enable the optimizations back */
    for (JOIN_TAB **ptab= changed_tabs; ptab != last_changed_tab; ptab++)
4202
    {
4203 4204
      JOIN_TAB *tab= *ptab;
      tab->read_record.ref_length= 0;
4205 4206
      tab->read_first_record= tab->save_read_first_record;
      tab->read_record.read_record_func= tab->save_read_record;
4207 4208
      if (tab->rowid_filter)
        tab->table->file->enable_pushed_rowid_filter();
4209
    }
unknown's avatar
unknown committed
4210
    executed= 1;
Igor Babaev's avatar
Igor Babaev committed
4211 4212
    if (!(uncacheable() & ~UNCACHEABLE_EXPLAIN) &&
        !item->with_recursive_reference)
unknown's avatar
unknown committed
4213
      item->make_const();
unknown's avatar
unknown committed
4214 4215
    thd->where= save_where;
    thd->lex->current_select= save_select;
4216
    DBUG_RETURN(exec_error || thd->is_error());
unknown's avatar
unknown committed
4217
  }
unknown's avatar
unknown committed
4218 4219
  thd->where= save_where;
  thd->lex->current_select= save_select;
unknown's avatar
unknown committed
4220 4221 4222
  DBUG_RETURN(0);
}

4223
int subselect_union_engine::exec()
unknown's avatar
unknown committed
4224
{
4225
  THD_WHERE save_where= thd->where;
4226
  int res= unit->exec();
unknown's avatar
unknown committed
4227
  thd->where= save_where;
4228
  return res;
unknown's avatar
unknown committed
4229 4230
}

4231

4232
/*
4233
  Search for at least one row satisfying select condition
4234 4235 4236 4237 4238 4239 4240 4241
 
  SYNOPSIS
    subselect_uniquesubquery_engine::scan_table()

  DESCRIPTION
    Scan the table using sequential access until we find at least one row
    satisfying select condition.
    
4242 4243
    The caller must set this->empty_result_set=FALSE before calling this
    function. This function will set it to TRUE if it finds a matching row.
4244 4245 4246 4247 4248 4249 4250

  RETURN
    FALSE - OK
    TRUE  - Error
*/

int subselect_uniquesubquery_engine::scan_table()
4251 4252 4253
{
  int error;
  TABLE *table= tab->table;
4254 4255
  DBUG_ENTER("subselect_uniquesubquery_engine::scan_table");

4256 4257 4258 4259 4260 4261 4262 4263
  if ((table->file->inited &&
       (error= table->file->ha_index_end())) ||
      (error= table->file->ha_rnd_init(1)))
  {
    (void) report_error(table, error);
    DBUG_RETURN(true);
  }

4264
  table->file->extra_opt(HA_EXTRA_CACHE,
4265
                         get_thd()->variables.read_buff_size);
4266 4267
  table->null_row= 0;
  for (;;)
4268
  {
4269
    error=table->file->ha_rnd_next(table->record[0]);
4270 4271
    if (unlikely(error))
    {
4272 4273 4274 4275 4276 4277 4278 4279 4280 4281
      if (error == HA_ERR_END_OF_FILE)
      {
        error= 0;
        break;
      }
      else
      {
        error= report_error(table, error);
        break;
      }
4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295
    }

    if (!cond || cond->val_int())
    {
      empty_result_set= FALSE;
      break;
    }
  }

  table->file->ha_rnd_end();
  DBUG_RETURN(error != 0);
}


4296 4297
/**
  Copy ref key for index access into the only subquery table.
unknown's avatar
unknown committed
4298

4299
  @details
4300 4301 4302 4303 4304 4305
    Copy ref key and check for conversion problems.
    If there is an error converting the left IN operand to the column type of
    the right IN operand count it as no match. In this case IN has the value of
    FALSE. We mark the subquery table cursor as having no more rows (to ensure
    that the processing that follows will not find a match) and return FALSE,
    so IN is not treated as returning NULL.
4306

4307 4308 4309
  @returns
    @retval FALSE The outer ref was copied into an index lookup key.
    @retval TRUE  The outer ref cannot possibly match any row, IN is FALSE.
4310 4311
*/

4312
bool subselect_uniquesubquery_engine::copy_ref_key(bool skip_constants)
4313 4314 4315
{
  DBUG_ENTER("subselect_uniquesubquery_engine::copy_ref_key");

4316 4317 4318
  for (store_key **copy= tab->ref.key_copy ; *copy ; copy++)
  {
    enum store_key::store_key_result store_res;
4319
    if (skip_constants && (*copy)->store_key_is_const())
Igor Babaev's avatar
Igor Babaev committed
4320
      continue;
4321
    store_res= (*copy)->copy(thd);
4322 4323 4324 4325 4326 4327 4328 4329
    tab->ref.key_err= store_res;

    if (store_res == store_key::STORE_KEY_FATAL)
    {
      /*
       Error converting the left IN operand to the column type of the right
       IN operand. 
      */
4330
      DBUG_RETURN(true);
4331 4332
    }
  }
4333
  DBUG_RETURN(false);
4334 4335 4336
}


4337 4338
/**
  Execute subselect via unique index lookup
4339

4340
  @details
4341 4342 4343 4344 4345 4346 4347 4348
    Find rows corresponding to the ref key using index access.
    If some part of the lookup key is NULL, then we're evaluating
      NULL IN (SELECT ... )
    This is a special case, we don't need to search for NULL in the table,
    instead, the result value is 
      - NULL  if select produces empty row set
      - FALSE otherwise.

4349 4350 4351
    In some cases (IN subselect is a top level item, i.e.
    is_top_level_item() == TRUE, the caller doesn't distinguish between NULL and
    FALSE result and we just return FALSE.
4352 4353 4354 4355 4356
    Otherwise we make a full table scan to see if there is at least one 
    matching row.
    
    The result of this function (info about whether a row was found) is
    stored in this->empty_result_set.
4357
    
4358 4359 4360 4361
  @returns
    @retval 0  OK
    @retval 1  notify caller to call Item_subselect::reset(),
               in most cases reset() sets the result to NULL
4362
*/
4363

4364
int subselect_uniquesubquery_engine::exec()
4365 4366 4367 4368
{
  DBUG_ENTER("subselect_uniquesubquery_engine::exec");
  int error;
  TABLE *table= tab->table;
4369
  empty_result_set= TRUE;
unknown's avatar
unknown committed
4370
  table->status= 0;
4371
  Item_in_subselect *in_subs= item->get_IN_subquery();
4372
  Subq_materialization_tracker *tracker= in_subs->get_materialization_tracker();
4373
  DBUG_ASSERT(in_subs);
4374
  DBUG_ASSERT(thd);
4375 4376 4377

  if (!tab->preread_init_done && tab->preread_init())
    DBUG_RETURN(1);
4378 4379
  if (tracker)
    tracker->increment_loops_count();
4380
  if (in_subs->left_expr_has_null())
4381 4382
  {
    /*
4383 4384
      The case when all values in left_expr are NULL is handled by
      Item_in_optimizer::val_int().
4385
    */
4386 4387 4388 4389
    if (in_subs->is_top_level_item())
      DBUG_RETURN(1); /* notify caller to call reset() and set NULL value. */
    else
      DBUG_RETURN(scan_table());
4390
  }
4391

4392
  if (copy_ref_key(true))
unknown's avatar
unknown committed
4393
  {
4394 4395
    /* We know that there will be no rows even if we scan. */
    in_subs->value= 0;
unknown's avatar
unknown committed
4396 4397
    DBUG_RETURN(0);
  }
4398

4399 4400 4401 4402 4403 4404 4405
  if (!table->file->inited &&
      (error= table->file->ha_index_init(tab->ref.key, 0)))
  {
    (void) report_error(table, error);
    DBUG_RETURN(true);
  }

4406 4407 4408 4409 4410
  error= table->file->ha_index_read_map(table->record[0],
                                        tab->ref.key_buff,
                                        make_prev_keypart_map(tab->
                                                              ref.key_parts),
                                        HA_READ_KEY_EXACT);
4411 4412
  if (unlikely(error &&
               error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE))
4413
    error= report_error(table, error);
4414 4415
  else
  {
4416 4417
    error= 0;
    table->null_row= 0;
4418 4419
    if (!table->status && (!cond || cond->val_int()))
    {
4420
      in_subs->value= 1;
4421 4422 4423
      empty_result_set= FALSE;
    }
    else
4424
      in_subs->value= 0;
4425
  }
4426

4427
  DBUG_RETURN(error != 0);
4428 4429
}

4430

4431
/*
4432
  TIMOUR: write comment
4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448
*/

int subselect_uniquesubquery_engine::index_lookup()
{
  DBUG_ENTER("subselect_uniquesubquery_engine::index_lookup");
  int error;
  TABLE *table= tab->table;
 
  if (!table->file->inited)
    table->file->ha_index_init(tab->ref.key, 0);
  error= table->file->ha_index_read_map(table->record[0],
                                        tab->ref.key_buff,
                                        make_prev_keypart_map(tab->
                                                              ref.key_parts),
                                        HA_READ_KEY_EXACT);
  DBUG_PRINT("info", ("lookup result: %i", error));
4449

4450 4451
  if (unlikely(error && error != HA_ERR_KEY_NOT_FOUND &&
               error != HA_ERR_END_OF_FILE))
4452
  {
4453 4454 4455 4456 4457 4458
    /*
      TIMOUR: I don't understand at all when do we need to call report_error.
      In most places where we access an index, we don't do this. Why here?
    */
    error= report_error(table, error);
    DBUG_RETURN(error);
4459 4460
  }

4461 4462
  table->null_row= 0;
  if (!error && (!cond || cond->val_int()))
4463
    item->get_IN_subquery()->value= 1;
4464
  else
4465
    item->get_IN_subquery()->value= 0;
4466 4467

  DBUG_RETURN(0);
4468 4469 4470 4471
}



4472
subselect_uniquesubquery_engine::~subselect_uniquesubquery_engine()
4473
{
4474
  /* Tell handler we don't need the index anymore */
4475 4476
  //psergey-merge-todo: the following was gone in 6.0:
 //psergey-merge: don't need this after all: tab->table->file->ha_index_end();
4477 4478
}

4479

4480 4481
/**
  Execute subselect via unique index lookup
4482

4483
  @details
4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497
    The engine is used to resolve subqueries in form

      oe IN (SELECT key FROM tbl WHERE subq_where) 

    The value of the predicate is calculated as follows: 
    1. If oe IS NULL, this is a special case, do a full table scan on
       table tbl and search for row that satisfies subq_where. If such 
       row is found, return NULL, otherwise return FALSE.
    2. Make an index lookup via key=oe, search for a row that satisfies
       subq_where. If found, return TRUE.
    3. If check_null==TRUE, make another lookup via key=NULL, search for a 
       row that satisfies subq_where. If found, return NULL, otherwise
       return FALSE.

4498
  @todo
4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516
    The step #1 can be optimized further when the index has several key
    parts. Consider a subquery:
    
      (oe1, oe2) IN (SELECT keypart1, keypart2 FROM tbl WHERE subq_where)

    and suppose we need to evaluate it for {oe1, oe2}=={const1, NULL}.
    Current code will do a full table scan and obtain correct result. There
    is a better option: instead of evaluating

      SELECT keypart1, keypart2 FROM tbl WHERE subq_where            (1)

    and checking if it has produced any matching rows, evaluate
    
      SELECT keypart2 FROM tbl WHERE subq_where AND keypart1=const1  (2)

    If this query produces a row, the result is NULL (as we're evaluating 
    "(const1, NULL) IN { (const1, X), ... }", which has a value of UNKNOWN,
    i.e. NULL).  If the query produces no rows, the result is FALSE.
4517

4518 4519 4520 4521
    We currently evaluate (1) by doing a full table scan. (2) can be
    evaluated by doing a "ref" scan on "keypart1=const1", which can be much
    cheaper. We can use index statistics to quickly check whether "ref" scan
    will be cheaper than full table scan.
4522

4523 4524 4525 4526
  @returns
    @retval 0  OK
    @retval 1  notify caller to call Item_subselect::reset(),
               in most cases reset() sets the result to NULL
4527 4528
*/

4529
int subselect_indexsubquery_engine::exec()
4530
{
4531
  DBUG_ENTER("subselect_indexsubquery_engine");
4532
  int error;
4533
  bool null_finding= 0;
4534
  TABLE *table= tab->table;
4535
  Item_in_subselect *in_subs= item->get_IN_subquery();
4536
  DBUG_ASSERT(thd);
4537

4538
  in_subs->value= 0;
4539
  empty_result_set= TRUE;
4540
  table->status= 0;
4541

4542 4543
  if (check_null)
  {
4544
    /* We need to check for NULL if there wasn't a matching value */
4545
    *tab->ref.null_ref_key= 0;			// Search first for not null
4546
    in_subs->was_null= 0;
4547 4548
  }

4549
  if (!tab->preread_init_done && tab->preread_init())
4550 4551
    DBUG_RETURN(1);

4552
  if (in_subs->left_expr_has_null())
4553
  {
4554 4555 4556
    /*
      The case when all values in left_expr are NULL is handled by
      Item_in_optimizer::val_int().
4557
    */
4558 4559 4560 4561
    if (in_subs->is_top_level_item())
      DBUG_RETURN(1); /* notify caller to call reset() and set NULL value. */
    else
      DBUG_RETURN(scan_table());
4562 4563
  }

4564
  if (copy_ref_key(true))
4565 4566 4567 4568 4569
  {
    /* We know that there will be no rows even if we scan. */
    in_subs->value= 0;
    DBUG_RETURN(0);
  }
4570

4571 4572 4573 4574 4575 4576
  if (!table->file->inited &&
      (error= table->file->ha_index_init(tab->ref.key, 1)))
  {
    (void) report_error(table, error);
    DBUG_RETURN(true);
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
4577

4578 4579 4580 4581 4582
  error= table->file->ha_index_read_map(table->record[0],
                                        tab->ref.key_buff,
                                        make_prev_keypart_map(tab->
                                                              ref.key_parts),
                                        HA_READ_KEY_EXACT);
4583 4584
  if (unlikely(error &&
               error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE))
4585
    error= report_error(table, error);
4586 4587
  else
  {
4588
    for (;;)
4589
    {
4590 4591 4592
      error= 0;
      table->null_row= 0;
      if (!table->status)
4593
      {
4594
        if ((!cond || cond->val_int()) && (!having || having->val_int()))
4595
        {
4596
          empty_result_set= FALSE;
4597
          if (null_finding)
4598
            in_subs->was_null= 1;
4599
          else
4600
            in_subs->value= 1;
4601 4602
          break;
        }
4603 4604 4605
        error= table->file->ha_index_next_same(table->record[0],
                                               tab->ref.key_buff,
                                               tab->ref.key_length);
4606
        if (unlikely(error && error != HA_ERR_END_OF_FILE))
4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618
        {
          error= report_error(table, error);
          break;
        }
      }
      else
      {
        if (!check_null || null_finding)
          break;			/* We don't need to check nulls */
        *tab->ref.null_ref_key= 1;
        null_finding= 1;
        /* Check if there exists a row with a null value in the index */
4619
        if (unlikely((error= (safe_index_read(tab) == 1))))
4620
          break;
4621
      }
4622 4623
    }
  }
4624
  DBUG_RETURN(error != 0);
4625 4626
}

4627

4628
uint subselect_single_select_engine::cols() const
unknown's avatar
unknown committed
4629
{
4630 4631 4632 4633
  //psergey-sj-backport: the following assert was gone in 6.0:
  //DBUG_ASSERT(select_lex->join != 0); // should be called after fix_fields()
  //return select_lex->join->fields_list.elements;
  return select_lex->item_list.elements;
unknown's avatar
unknown committed
4634 4635
}

unknown's avatar
unknown committed
4636

4637
uint subselect_union_engine::cols() const
unknown's avatar
unknown committed
4638
{
4639 4640
  DBUG_ASSERT(unit->is_prepared());  // should be called after fix_fields()
  return unit->types.elements;
unknown's avatar
unknown committed
4641 4642
}

unknown's avatar
unknown committed
4643

4644
uint8 subselect_single_select_engine::uncacheable()
4645 4646 4647 4648
{
  return select_lex->uncacheable;
}

unknown's avatar
unknown committed
4649

4650
uint8 subselect_union_engine::uncacheable()
4651 4652 4653 4654
{
  return unit->uncacheable;
}

unknown's avatar
unknown committed
4655

unknown's avatar
unknown committed
4656 4657 4658 4659 4660 4661 4662 4663 4664
void subselect_single_select_engine::exclude()
{
  select_lex->master_unit()->exclude_level();
}

void subselect_union_engine::exclude()
{
  unit->exclude_level();
}
4665

unknown's avatar
unknown committed
4666

4667
void subselect_uniquesubquery_engine::exclude()
4668 4669 4670 4671
{
  //this never should be called
  DBUG_ASSERT(0);
}
4672 4673


4674
table_map subselect_engine::calc_const_tables(List<TABLE_LIST> &list)
4675 4676
{
  table_map map= 0;
4677 4678 4679 4680
  List_iterator<TABLE_LIST> ti(list);
  TABLE_LIST *table;
  //for (; table; table= table->next_leaf)
  while ((table= ti++))
4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691
  {
    TABLE *tbl= table->table;
    if (tbl && tbl->const_table)
      map|= tbl->map;
  }
  return map;
}


table_map subselect_single_select_engine::upper_select_const_tables()
{
4692
  return calc_const_tables(select_lex->outer_select()->leaf_tables);
4693 4694
}

unknown's avatar
merge  
unknown committed
4695

4696 4697
table_map subselect_union_engine::upper_select_const_tables()
{
4698
  return calc_const_tables(unit->outer_select()->leaf_tables);
4699
}
unknown's avatar
merge  
unknown committed
4700 4701


4702 4703
void subselect_single_select_engine::print(String *str,
                                           enum_query_type query_type)
unknown's avatar
unknown committed
4704
{
4705
  With_clause* with_clause= select_lex->get_with_clause();
4706
  THD *thd= get_thd();
4707
  if (with_clause)
4708 4709
    with_clause->print(thd, str, query_type);
  select_lex->print(thd, str, query_type);
unknown's avatar
unknown committed
4710 4711 4712
}


4713
void subselect_union_engine::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
4714
{
4715
  unit->print(str, query_type);
unknown's avatar
unknown committed
4716 4717 4718
}


4719 4720
void subselect_uniquesubquery_engine::print(String *str,
                                            enum_query_type query_type)
unknown's avatar
unknown committed
4721
{
4722
  TABLE *table= tab->tab_list ? tab->tab_list->table : tab->table;
4723
  str->append(STRING_WITH_LEN("<primary_index_lookup>("));
4724
  tab->ref.items[0]->print(str, query_type);
4725
  str->append(STRING_WITH_LEN(" in "));
4726
  if (table->s->table_category == TABLE_CATEGORY_TEMPORARY)
4727 4728 4729 4730 4731 4732 4733 4734
  {
    /*
      Temporary tables' names change across runs, so they can't be used for
      EXPLAIN EXTENDED.
    */
    str->append(STRING_WITH_LEN("<temporary table>"));
  }
  else
4735 4736
    str->append(&table->s->table_name);
  KEY *key_info= table->key_info+ tab->ref.key;
4737
  str->append(STRING_WITH_LEN(" on "));
4738
  str->append(&key_info->name);
unknown's avatar
unknown committed
4739 4740
  if (cond)
  {
4741
    str->append(STRING_WITH_LEN(" where "));
4742
    cond->print(str, query_type);
unknown's avatar
unknown committed
4743 4744 4745 4746
  }
  str->append(')');
}

4747 4748 4749 4750 4751 4752 4753
/*
TODO:
The above ::print method should be changed as below. Do it after
all other tests pass.

void subselect_uniquesubquery_engine::print(String *str)
{
4754 4755
  TABLE *table= tab->tab_list ? tab->tab_list->table : tab->table;
  KEY *key_info= table->key_info + tab->ref.key;
4756
  str->append(STRING_WITH_LEN("<primary_index_lookup>("));
4757
  for (uint i= 0; i < key_info->user_defined_key_parts; i++)
4758 4759
    tab->ref.items[i]->print(str);
  str->append(STRING_WITH_LEN(" in "));
4760
  str->append(&table->s->table_name);
4761
  str->append(STRING_WITH_LEN(" on "));
4762
  str->append(&key_info->name);
4763 4764 4765 4766 4767 4768 4769 4770
  if (cond)
  {
    str->append(STRING_WITH_LEN(" where "));
    cond->print(str);
  }
  str->append(')');
}
*/
unknown's avatar
unknown committed
4771

4772 4773
void subselect_indexsubquery_engine::print(String *str,
                                           enum_query_type query_type)
unknown's avatar
unknown committed
4774
{
4775
  TABLE *table= tab->tab_list ? tab->tab_list->table : tab->table;
4776
  str->append(STRING_WITH_LEN("<index_lookup>("));
4777
  tab->ref.items[0]->print(str, query_type);
4778
  str->append(STRING_WITH_LEN(" in "));
4779 4780
  str->append(&table->s->table_name);
  KEY *key_info= table->key_info+ tab->ref.key;
4781
  str->append(STRING_WITH_LEN(" on "));
4782
  str->append(&key_info->name);
unknown's avatar
unknown committed
4783
  if (check_null)
4784
    str->append(STRING_WITH_LEN(" checking NULL"));
4785
  if (cond)
unknown's avatar
unknown committed
4786
  {
4787
    str->append(STRING_WITH_LEN(" where "));
4788
    cond->print(str, query_type);
unknown's avatar
unknown committed
4789
  }
4790 4791 4792
  if (having)
  {
    str->append(STRING_WITH_LEN(" having "));
4793
    having->print(str, query_type);
4794
  }
unknown's avatar
unknown committed
4795 4796
  str->append(')');
}
4797

unknown's avatar
unknown committed
4798 4799
/**
  change select_result object of engine.
4800

unknown's avatar
unknown committed
4801 4802
  @param si		new subselect Item
  @param res		new select_result object
4803
  @param temp           temporary assignment
4804

unknown's avatar
unknown committed
4805
  @retval
unknown's avatar
unknown committed
4806
    FALSE OK
unknown's avatar
unknown committed
4807
  @retval
unknown's avatar
unknown committed
4808
    TRUE  error
4809 4810
*/

4811 4812 4813 4814
bool
subselect_single_select_engine::change_result(Item_subselect *si,
                                              select_result_interceptor *res,
                                              bool temp)
4815
{
unknown's avatar
unknown committed
4816
  DBUG_ENTER("subselect_single_select_engine::change_result");
4817
  item= si;
4818
  if (temp)
4819 4820 4821 4822 4823 4824
  {
    /*
      Here we reuse change_item_tree to roll back assignment.  It has
      nothing special about Item* pointer so it is safe conversion. We do
      not change the interface to be compatible with MySQL.
    */
4825
    thd->change_item_tree((Item**) &result, (Item*)res);
4826
  }
4827 4828
  else
    result= res;
4829 4830 4831 4832 4833 4834 4835 4836

  /*
    We can't use 'result' below as gcc 4.2.4's alias optimization
    assumes that result was not changed by thd->change_item_tree().
    I tried to find a solution to make gcc happy, but could not find anything
    that would not require a lot of extra code that would be harder to manage
    than the current code.
  */
4837
  DBUG_RETURN(select_lex->join->change_result(res, NULL));
4838 4839 4840
}


unknown's avatar
unknown committed
4841 4842
/**
  change select_result object of engine.
4843

unknown's avatar
unknown committed
4844 4845
  @param si		new subselect Item
  @param res		new select_result object
4846

unknown's avatar
unknown committed
4847
  @retval
unknown's avatar
unknown committed
4848
    FALSE OK
unknown's avatar
unknown committed
4849
  @retval
unknown's avatar
unknown committed
4850
    TRUE  error
4851 4852
*/

unknown's avatar
unknown committed
4853
bool subselect_union_engine::change_result(Item_subselect *si,
4854 4855
                                           select_result_interceptor *res,
                                           bool temp)
4856 4857 4858
{
  item= si;
  int rc= unit->change_result(res, result);
4859 4860 4861 4862
  if (temp)
    thd->change_item_tree((Item**) &result, (Item*)res);
  else
    result= res;
4863 4864 4865 4866
  return rc;
}


unknown's avatar
unknown committed
4867 4868
/**
  change select_result emulation, never should be called.
4869

unknown's avatar
unknown committed
4870 4871
  @param si		new subselect Item
  @param res		new select_result object
4872

unknown's avatar
unknown committed
4873
  @retval
unknown's avatar
unknown committed
4874
    FALSE OK
unknown's avatar
unknown committed
4875
  @retval
unknown's avatar
unknown committed
4876
    TRUE  error
4877 4878
*/

4879 4880 4881 4882 4883
bool
subselect_uniquesubquery_engine::change_result(Item_subselect *si,
                                               select_result_interceptor *res,
                                               bool temp
                                               __attribute__((unused)))
4884 4885
{
  DBUG_ASSERT(0);
unknown's avatar
unknown committed
4886
  return TRUE;
4887
}
4888 4889


unknown's avatar
unknown committed
4890 4891
/**
  Report about presence of tables in subquery.
4892

unknown's avatar
unknown committed
4893
  @retval
4894
    TRUE  there are not tables used in subquery
unknown's avatar
unknown committed
4895
  @retval
4896 4897
    FALSE there are some tables in subquery
*/
4898
bool subselect_single_select_engine::no_tables() const
4899 4900 4901 4902 4903
{
  return(select_lex->table_list.elements == 0);
}


4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919
/*
  Check statically whether the subquery can return NULL

  SINOPSYS
    subselect_single_select_engine::may_be_null()

  RETURN
    FALSE  can guarantee that the subquery never return NULL
    TRUE   otherwise
*/
bool subselect_single_select_engine::may_be_null()
{
  return ((no_tables() && !join->conds && !join->having) ? maybe_null : 1);
}


unknown's avatar
unknown committed
4920 4921
/**
  Report about presence of tables in subquery.
4922

unknown's avatar
unknown committed
4923
  @retval
4924
    TRUE  there are not tables used in subquery
unknown's avatar
unknown committed
4925
  @retval
4926 4927
    FALSE there are some tables in subquery
*/
4928
bool subselect_union_engine::no_tables() const
4929 4930 4931 4932 4933 4934 4935 4936 4937 4938
{
  for (SELECT_LEX *sl= unit->first_select(); sl; sl= sl->next_select())
  {
    if (sl->table_list.elements)
      return FALSE;
  }
  return TRUE;
}


unknown's avatar
unknown committed
4939 4940
/**
  Report about presence of tables in subquery.
4941

unknown's avatar
unknown committed
4942
  @retval
4943
    TRUE  there are not tables used in subquery
unknown's avatar
unknown committed
4944
  @retval
4945 4946 4947
    FALSE there are some tables in subquery
*/

4948
bool subselect_uniquesubquery_engine::no_tables() const
4949 4950
{
  /* returning value is correct, but this method should never be called */
4951
  DBUG_ASSERT(FALSE);
4952 4953
  return 0;
}
4954 4955 4956 4957 4958 4959 4960


/******************************************************************************
  WL#1110 - Implementation of class subselect_hash_sj_engine
******************************************************************************/


4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974
/**
  Check if an IN predicate should be executed via partial matching using
  only schema information.

  @details
  This test essentially has three results:
  - partial matching is applicable, but cannot be executed due to a
    limitation in the total number of indexes, as a result we can't
    use subquery materialization at all.
  - partial matching is either applicable or not, and this can be
    determined by looking at 'this->max_keys'.
  If max_keys > 1, then we need partial matching because there are
  more indexes than just the one we use during materialization to
  remove duplicates.
4975 4976 4977 4978 4979 4980 4981 4982 4983

  @note
  TIMOUR: The schema-based analysis for partial matching can be done once for
  prepared statement and remembered. It is done here to remove the need to
  save/restore all related variables between each re-execution, thus making
  the code simpler.

  @retval PARTIAL_MATCH  if a partial match should be used
  @retval COMPLETE_MATCH if a complete match (index lookup) should be used
4984 4985
*/

4986 4987
subselect_hash_sj_engine::exec_strategy
subselect_hash_sj_engine::get_strategy_using_schema()
4988
{
4989
  Item_in_subselect *item_in= item->get_IN_subquery();
4990 4991

  if (item_in->is_top_level_item())
4992
    return COMPLETE_MATCH;
4993 4994
  else
  {
Igor Babaev's avatar
Igor Babaev committed
4995
    List_iterator<Item> inner_col_it(*item_in->unit->get_column_types(false));
4996 4997 4998 4999 5000 5001 5002
    Item *outer_col, *inner_col;

    for (uint i= 0; i < item_in->left_expr->cols(); i++)
    {
      outer_col= item_in->left_expr->element_index(i);
      inner_col= inner_col_it++;

5003
      if (!inner_col->maybe_null() && !outer_col->maybe_null())
5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014
        bitmap_set_bit(&non_null_key_parts, i);
      else
      {
        bitmap_set_bit(&partial_match_key_parts, i);
        ++count_partial_match_columns;
      }
    }
  }

  /* If no column contains NULLs use regular hash index lookups. */
  if (count_partial_match_columns)
5015 5016
    return PARTIAL_MATCH;
  return COMPLETE_MATCH;
5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027
}


/**
  Test whether an IN predicate must be computed via partial matching
  based on the NULL statistics for each column of a materialized subquery.

  @details The procedure analyzes column NULL statistics, updates the
  matching type of columns that cannot be NULL or that contain only NULLs.
  Based on this, the procedure determines the final execution strategy for
  the [NOT] IN predicate.
5028 5029 5030

  @retval PARTIAL_MATCH  if a partial match should be used
  @retval COMPLETE_MATCH if a complete match (index lookup) should be used
5031 5032
*/

5033 5034
subselect_hash_sj_engine::exec_strategy
subselect_hash_sj_engine::get_strategy_using_data()
5035
{
5036
  Item_in_subselect *item_in= item->get_IN_subquery();
5037 5038 5039 5040
  select_materialize_with_stats *result_sink=
    (select_materialize_with_stats *) result;
  Item *outer_col;

5041 5042 5043 5044 5045 5046
  /*
    If we already determined that a complete match is enough based on schema
    information, nothing can be better.
  */
  if (strategy == COMPLETE_MATCH)
    return COMPLETE_MATCH;
5047 5048 5049 5050 5051 5052 5053 5054 5055 5056

  for (uint i= 0; i < item_in->left_expr->cols(); i++)
  {
    if (!bitmap_is_set(&partial_match_key_parts, i))
      continue;
    outer_col= item_in->left_expr->element_index(i);
    /*
      If column 'i' doesn't contain NULLs, and the corresponding outer reference
      cannot have a NULL value, then 'i' is a non-nullable column.
    */
5057
    if (result_sink->get_null_count_of_col(i) == 0 && !outer_col->maybe_null())
5058 5059 5060 5061 5062
    {
      bitmap_clear_bit(&partial_match_key_parts, i);
      bitmap_set_bit(&non_null_key_parts, i);
      --count_partial_match_columns;
    }
unknown's avatar
unknown committed
5063
    if (result_sink->get_null_count_of_col(i) == tmp_table->file->stats.records)
5064
      ++count_null_only_columns;
unknown's avatar
unknown committed
5065 5066
    if (result_sink->get_null_count_of_col(i))
      ++count_columns_with_nulls;
5067 5068 5069 5070
  }

  /* If no column contains NULLs use regular hash index lookups. */
  if (!count_partial_match_columns)
5071 5072 5073
    return COMPLETE_MATCH;
  return PARTIAL_MATCH;
}
5074

5075 5076 5077 5078

void
subselect_hash_sj_engine::choose_partial_match_strategy(
  bool has_non_null_key, bool has_covering_null_row,
5079
  MY_BITMAP *partial_match_key_parts_arg)
5080
{
5081
  ulonglong pm_buff_size;
5082 5083 5084 5085 5086

  DBUG_ASSERT(strategy == PARTIAL_MATCH);
  /*
    Choose according to global optimizer switch. If only one of the switches is
    'ON', then the remaining strategy is the only possible one. The only cases
5087
    when this will be overridden is when the total size of all buffers for the
5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129
    merge strategy is bigger than the 'rowid_merge_buff_size' system variable,
    or if there isn't enough physical memory to allocate the buffers.
  */
  if (!optimizer_flag(thd, OPTIMIZER_SWITCH_PARTIAL_MATCH_ROWID_MERGE) &&
       optimizer_flag(thd, OPTIMIZER_SWITCH_PARTIAL_MATCH_TABLE_SCAN))
    strategy= PARTIAL_MATCH_SCAN;
  else if
     ( optimizer_flag(thd, OPTIMIZER_SWITCH_PARTIAL_MATCH_ROWID_MERGE) &&
      !optimizer_flag(thd, OPTIMIZER_SWITCH_PARTIAL_MATCH_TABLE_SCAN))
    strategy= PARTIAL_MATCH_MERGE;

  /*
    If both switches are ON, or both are OFF, we interpret that as "let the
    optimizer decide". Perform a cost based choice between the two partial
    matching strategies.
  */
  /*
    TIMOUR: the above interpretation of the switch values could be changed to:
    - if both are ON - let the optimizer decide,
    - if both are OFF - do not use partial matching, therefore do not use
      materialization in non-top-level predicates.
    The problem with this is that we know for sure if we need partial matching
    only after the subquery is materialized, and this is too late to revert to
    the IN=>EXISTS strategy.
  */
  if (strategy == PARTIAL_MATCH)
  {
    /*
      TIMOUR: Currently we use a super simplistic measure. This will be
      addressed in a separate task.
    */
    if (tmp_table->file->stats.records < 100)
      strategy= PARTIAL_MATCH_SCAN;
    else
      strategy= PARTIAL_MATCH_MERGE;
  }

  /* Check if there is enough memory for the rowid merge strategy. */
  if (strategy == PARTIAL_MATCH_MERGE)
  {
    pm_buff_size= rowid_merge_buff_size(has_non_null_key,
                                        has_covering_null_row,
5130
                                        partial_match_key_parts_arg);
5131 5132
    if (pm_buff_size > thd->variables.rowid_merge_buff_size)
      strategy= PARTIAL_MATCH_SCAN;
5133 5134 5135
    else
      item->get_IN_subquery()->get_materialization_tracker()->
          report_partial_match_buffer_size(pm_buff_size);
5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148
  }
}


/*
  Compute the memory size of all buffers proportional to the number of rows
  in tmp_table.

  @details
  If the result is bigger than thd->variables.rowid_merge_buff_size, partial
  matching via merging is not applicable.
*/

5149
ulonglong subselect_hash_sj_engine::rowid_merge_buff_size(
5150 5151 5152
  bool has_non_null_key, bool has_covering_null_row,
  MY_BITMAP *partial_match_key_parts)
{
5153 5154
  /* Total size of all buffers used by partial matching. */
  ulonglong buff_size;
5155 5156 5157 5158
  ha_rows row_count= tmp_table->file->stats.records;
  uint rowid_length= tmp_table->file->ref_length;
  select_materialize_with_stats *result_sink=
    (select_materialize_with_stats *) result;
unknown's avatar
unknown committed
5159
  ha_rows max_null_row;
5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181

  /* Size of the subselect_rowid_merge_engine::row_num_to_rowid buffer. */
  buff_size= row_count * rowid_length * sizeof(uchar);

  if (has_non_null_key)
  {
    /* Add the size of Ordered_key::key_buff of the only non-NULL key. */
    buff_size+= row_count * sizeof(rownum_t);
  }

  if (!has_covering_null_row)
  {
    for (uint i= 0; i < partial_match_key_parts->n_bits; i++)
    {
      if (!bitmap_is_set(partial_match_key_parts, i) ||
          result_sink->get_null_count_of_col(i) == row_count)
        continue; /* In these cases we wouldn't construct Ordered keys. */

      /* Add the size of Ordered_key::key_buff */
      buff_size+= (row_count - result_sink->get_null_count_of_col(i)) *
                         sizeof(rownum_t);
      /* Add the size of Ordered_key::null_key */
unknown's avatar
unknown committed
5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193
      max_null_row= result_sink->get_max_null_of_col(i);
      if (max_null_row >= UINT_MAX)
      {
        /*
          There can be at most UINT_MAX bits in a MY_BITMAP that is used to
          store NULLs in an Ordered_key. Return a number of bytes bigger than
          the maximum allowed memory buffer for partial matching to disable
          the rowid merge strategy.
        */
        return ULONGLONG_MAX;
      }
      buff_size+= bitmap_buffer_size(max_null_row);
5194 5195 5196 5197
    }
  }

  return buff_size;
5198 5199 5200 5201 5202 5203 5204 5205 5206 5207
}


/*
  Initialize a MY_BITMAP with a buffer allocated on the current
  memory root.
  TIMOUR: move to bitmap C file?
*/

static my_bool
5208
my_bitmap_init_memroot(MY_BITMAP *map, uint n_bits, MEM_ROOT *mem_root)
5209 5210 5211 5212 5213
{
  my_bitmap_map *bitmap_buf;

  if (!(bitmap_buf= (my_bitmap_map*) alloc_root(mem_root,
                                                bitmap_buffer_size(n_bits))) ||
5214
      my_bitmap_init(map, bitmap_buf, n_bits))
5215 5216 5217 5218 5219 5220
    return TRUE;
  bitmap_clear_all(map);
  return FALSE;
}


5221 5222 5223 5224
/**
  Create all structures needed for IN execution that can live between PS
  reexecution.

5225
  @param tmp_columns the items that produce the data for the temp table
5226 5227
  @param subquery_id subquery's identifier (to make "<subquery%d>" name for
                                            EXPLAIN)
5228 5229

  @details
5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242
  - Create a temporary table to store the result of the IN subquery. The
    temporary table has one hash index on all its columns.
  - Create a new result sink that sends the result stream of the subquery to
    the temporary table,

  @notice:
    Currently Item_subselect::init() already chooses and creates at parse
    time an engine with a corresponding JOIN to execute the subquery.

  @retval TRUE  if error
  @retval FALSE otherwise
*/

Sergey Petrunya's avatar
Sergey Petrunya committed
5243
bool subselect_hash_sj_engine::init(List<Item> *tmp_columns, uint subquery_id)
5244
{
5245
  THD *thd= get_thd();
5246
  select_unit *result_sink;
5247
  /* Options to create_tmp_table. */
5248
  ulonglong tmp_create_options= thd->variables.option_bits | TMP_TABLE_ALL_COLUMNS;
5249
                             /* | TMP_TABLE_FORCE_MYISAM; TIMOUR: force MYISAM */
5250

5251
  DBUG_ENTER("subselect_hash_sj_engine::init");
5252

5253
  if (my_bitmap_init_memroot(&non_null_key_parts, tmp_columns->elements,
5254
                            thd->mem_root) ||
5255
      my_bitmap_init_memroot(&partial_match_key_parts, tmp_columns->elements,
5256 5257
                            thd->mem_root))
    DBUG_RETURN(TRUE);
5258 5259 5260 5261 5262 5263

  /*
    Create and initialize a select result interceptor that stores the
    result stream in a temporary table. The temporary table itself is
    managed (created/filled/etc) internally by the interceptor.
  */
5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276
/*
  TIMOUR:
  Select a more efficient result sink when we know there is no need to collect
  data statistics.

  if (strategy == COMPLETE_MATCH)
  {
    if (!(result= new select_union))
      DBUG_RETURN(TRUE);
  }
  else if (strategy == PARTIAL_MATCH)
  {
  if (!(result= new select_materialize_with_stats))
5277
    DBUG_RETURN(TRUE);
5278 5279
  }
*/
5280
  if (!(result_sink= new (thd->mem_root) select_materialize_with_stats(thd)))
5281
    DBUG_RETURN(TRUE);
Sergey Petrunya's avatar
Sergey Petrunya committed
5282
    
5283
  char buf[32];
5284 5285 5286
  LEX_CSTRING name;
  name.length= my_snprintf(buf, sizeof(buf), "<subquery%u>", subquery_id);
  if (!(name.str= (char*) thd->memdup(buf, name.length + 1)))
5287
    DBUG_RETURN(TRUE);
5288

5289
  result_sink->get_tmp_table_param()->materialized_subquery= true;
5290 5291 5292

  if (item->substype() == Item_subselect::IN_SUBS &&
      (item->get_IN_subquery()->is_jtbm_merged))
Igor Babaev's avatar
Igor Babaev committed
5293 5294 5295
  {
    result_sink->get_tmp_table_param()->force_not_null_cols= true;
  }
5296 5297
  if (result_sink->create_result_table(thd, tmp_columns, TRUE,
                                       tmp_create_options,
5298
				       &name, TRUE, TRUE, FALSE, 0))
5299 5300
    DBUG_RETURN(TRUE);

5301 5302
  tmp_table= result_sink->table;
  result= result_sink;
5303 5304

  /*
5305
    If the subquery has blobs, or the total key length is bigger than
5306
    some length, or the total number of key parts is more than the
5307
    allowed maximum (currently MAX_REF_PARTS == 32), then the created
5308 5309 5310 5311
    index cannot be used for lookups and we can't use hash semi
    join. If this is the case, delete the temporary table since it
    will not be used, and tell the caller we failed to initialize the
    engine.
5312 5313 5314
  */
  if (tmp_table->s->keys == 0)
  {
5315 5316
    //fprintf(stderr, "Q: %s\n", current_thd->query());
    DBUG_ASSERT(0);
5317
    DBUG_ASSERT(
5318
      (tmp_table->key_info->flags & HA_UNIQUE_HASH) ||
5319
      tmp_table->key_info->key_length >= tmp_table->file->max_key_length() ||
5320 5321
      tmp_table->key_info->user_defined_key_parts >
      tmp_table->file->max_key_parts());
5322
    free_tmp_table(thd, tmp_table);
5323
    tmp_table= NULL;
5324 5325 5326 5327 5328 5329 5330 5331
    delete result;
    result= NULL;
    DBUG_RETURN(TRUE);
  }

  /*
    Make sure there is only one index on the temp table, and it doesn't have
    the extra key part created when s->uniques > 0.
5332 5333 5334

    NOTE: item have to be Item_in_subselect, because class constructor
    accept Item_in_subselect as the parmeter.
5335
  */
5336
  DBUG_ASSERT(tmp_table->s->keys == 1 &&
5337
              item->get_IN_subquery()->left_expr->cols() ==
5338
              tmp_table->key_info->user_defined_key_parts);
5339

5340 5341 5342
  if (make_semi_join_conds() ||
      /* A unique_engine is used both for complete and partial matching. */
      !(lookup_engine= make_unique_engine()))
5343
    DBUG_RETURN(TRUE);
5344

5345 5346 5347 5348
  /*
    Repeat name resolution for 'cond' since cond is not part of any
    clause of the query, and it is not 'fixed' during JOIN::prepare.
  */
5349 5350
  if (semi_join_conds &&
      semi_join_conds->fix_fields_if_needed(thd, (Item**)&semi_join_conds))
5351 5352 5353
    DBUG_RETURN(TRUE);
  /* Let our engine reuse this query plan for materialization. */
  materialize_join= materialize_engine->join;
5354
  materialize_join->change_result(result, NULL);
5355

5356 5357
  DBUG_RETURN(FALSE);
}
5358 5359


5360 5361 5362
/*
  Create an artificial condition to post-filter those rows matched by index
  lookups that cannot be distinguished by the index lookup procedure.
5363

5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378
  @notes
  The need for post-filtering may occur e.g. because of
  truncation. Prepared statements execution requires that fix_fields is
  called for every execution. In order to call fix_fields we need to
  create a Name_resolution_context and a corresponding TABLE_LIST for
  the temporary table for the subquery, so that all column references
  to the materialized subquery table can be resolved correctly.

  @returns
    @retval TRUE  memory allocation error occurred
    @retval FALSE the conditions were created and resolved (fixed)
*/

bool subselect_hash_sj_engine::make_semi_join_conds()
{
5379 5380 5381 5382 5383
  /*
    Table reference for tmp_table that is used to resolve column references
    (Item_fields) to columns in tmp_table.
  */
  TABLE_LIST *tmp_table_ref;
5384 5385
  /* Name resolution context for all tmp_table columns created below. */
  Name_resolution_context *context;
5386
  Item_in_subselect *item_in= item->get_IN_subquery();
5387
  LEX_CSTRING table_name;
5388 5389 5390
  DBUG_ENTER("subselect_hash_sj_engine::make_semi_join_conds");
  DBUG_ASSERT(semi_join_conds == NULL);

Monty's avatar
Monty committed
5391
  if (!(semi_join_conds= new (thd->mem_root) Item_cond_and(thd)))
5392 5393
    DBUG_RETURN(TRUE);

5394
  if (!(tmp_table_ref= thd->alloc<TABLE_LIST>(1)))
5395 5396
    DBUG_RETURN(TRUE);

5397 5398 5399
  table_name.str=    tmp_table->alias.c_ptr();
  table_name.length= tmp_table->alias.length(),
  tmp_table_ref->init_one_table(&empty_clex_str, &table_name, NULL, TL_READ);
5400 5401
  tmp_table_ref->table= tmp_table;

Marko Mäkelä's avatar
Marko Mäkelä committed
5402
  context= new Name_resolution_context(tmp_table_ref);
5403
  semi_join_conds_context= context;
Marko Mäkelä's avatar
Marko Mäkelä committed
5404

5405
  for (uint i= 0; i < item_in->left_expr->cols(); i++)
5406
  {
5407 5408
    /* New equi-join condition for the current column. */
    Item_func_eq *eq_cond;
5409
    /* Item for the corresponding field from the materialized temp table. */
5410 5411 5412
    Item_field *right_col_item= new (thd->mem_root)
        Item_field(thd, context, tmp_table->field[i]);
    if (right_col_item)
5413
      right_col_item->set_refers_to_temp_table();
5414

5415
    if (!right_col_item ||
5416 5417 5418 5419
        !(eq_cond= new (thd->mem_root)
          Item_func_eq(thd, item_in->left_expr->element_index(i),
                       right_col_item)) ||
        (((Item_cond_and*)semi_join_conds)->add(eq_cond, thd->mem_root)))
5420
    {
5421 5422
      delete semi_join_conds;
      semi_join_conds= NULL;
5423 5424 5425
      DBUG_RETURN(TRUE);
    }
  }
5426
  if (semi_join_conds->fix_fields(thd, (Item**)&semi_join_conds))
5427 5428 5429 5430 5431 5432 5433
    DBUG_RETURN(TRUE);

  DBUG_RETURN(FALSE);
}


/**
5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446
  Create a new uniquesubquery engine for the execution of an IN predicate.

  @details
  Create and initialize a new JOIN_TAB, and Table_ref objects to perform
  lookups into the indexed temporary table.

  @retval A new subselect_hash_sj_engine object
  @retval NULL if a memory allocation error occurs
*/

subselect_uniquesubquery_engine*
subselect_hash_sj_engine::make_unique_engine()
{
5447
  Item_in_subselect *item_in= item->get_IN_subquery();
unknown's avatar
unknown committed
5448
  Item_iterator_row it(item_in->left_expr);
5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461
  /* The only index on the temporary table. */
  KEY *tmp_key= tmp_table->key_info;
  JOIN_TAB *tab;

  DBUG_ENTER("subselect_hash_sj_engine::make_unique_engine");

  /*
    Create and initialize the JOIN_TAB that represents an index lookup
    plan operator into the materialized subquery result. Notice that:
    - this JOIN_TAB has no corresponding JOIN (and doesn't need one), and
    - here we initialize only those members that are used by
      subselect_uniquesubquery_engine, so these objects are incomplete.
  */
5462
  if (!(tab= thd->alloc<JOIN_TAB>(1)))
5463 5464
    DBUG_RETURN(NULL);

unknown's avatar
unknown committed
5465
  tab->table= tmp_table;
5466
  tab->tab_list= 0;
5467
  tab->preread_init_done= FALSE;
unknown's avatar
unknown committed
5468
  tab->ref.tmp_table_index_lookup_init(thd, tmp_key, it, FALSE);
5469

5470 5471 5472
  DBUG_RETURN(new (thd->mem_root)
              subselect_uniquesubquery_engine(thd, tab, item_in,
                                              semi_join_conds));
5473 5474 5475
}


5476 5477 5478 5479 5480 5481 5482
subselect_hash_sj_engine::~subselect_hash_sj_engine()
{
  delete lookup_engine;
  delete result;
  if (tmp_table)
    free_tmp_table(thd, tmp_table);
}
5483 5484


5485
int subselect_hash_sj_engine::prepare(THD *thd_arg)
5486 5487 5488 5489 5490
{
  /*
    Create and optimize the JOIN that will be used to materialize
    the subquery if not yet created.
  */
5491 5492
  set_thd(thd_arg);
  return materialize_engine->prepare(thd);
5493 5494 5495 5496 5497 5498
}


/**
  Cleanup performed after each PS execution.

5499
  @details
5500 5501 5502 5503 5504
  Called in the end of JOIN::prepare for PS from Item_subselect::cleanup.
*/

void subselect_hash_sj_engine::cleanup()
{
5505
  enum_engine_type lookup_engine_type= lookup_engine->engine_type();
5506
  is_materialized= FALSE;
5507 5508 5509 5510 5511
  bitmap_clear_all(&non_null_key_parts);
  bitmap_clear_all(&partial_match_key_parts);
  count_partial_match_columns= 0;
  count_null_only_columns= 0;
  strategy= UNDEFINED;
5512
  materialize_engine->cleanup();
5513 5514 5515 5516 5517
  /*
    Restore the original Item_in_subselect engine. This engine is created once
    at parse time and stored across executions, while all other materialization
    related engines are created and chosen for each execution.
  */
5518
  item->get_IN_subquery()->engine= materialize_engine;
5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534
  if (lookup_engine_type == TABLE_SCAN_ENGINE ||
      lookup_engine_type == ROWID_MERGE_ENGINE)
  {
    subselect_engine *inner_lookup_engine;
    inner_lookup_engine=
      ((subselect_partial_match_engine*) lookup_engine)->lookup_engine;
    /*
      Partial match engines are recreated for each PS execution inside
      subselect_hash_sj_engine::exec().
    */
    delete lookup_engine;
    lookup_engine= inner_lookup_engine;
  }
  DBUG_ASSERT(lookup_engine->engine_type() == UNIQUESUBQUERY_ENGINE);
  lookup_engine->cleanup();
  result->cleanup(); /* Resets the temp table as well. */
5535 5536 5537
  DBUG_ASSERT(tmp_table);
  free_tmp_table(thd, tmp_table);
  tmp_table= NULL;
5538 5539 5540
}


5541 5542 5543 5544 5545 5546
/*
  Get fanout produced by tables specified in the table_map
*/

double get_fanout_with_deps(JOIN *join, table_map tset)
{
5547 5548 5549 5550
  /* Handle the case of "Impossible WHERE" */
  if (join->table_count == 0)
    return 0.0;

5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575
  /* First, recursively get all tables we depend on */
  table_map deps_to_check= tset;
  table_map checked_deps= 0;
  table_map further_deps;
  do
  {
    further_deps= 0;
    Table_map_iterator tm_it(deps_to_check);
    int tableno;
    while ((tableno = tm_it.next_bit()) != Table_map_iterator::BITMAP_END)
    {
      /* get tableno's dependency tables that are not in needed_set */
      further_deps |= join->map2table[tableno]->ref.depend_map & ~checked_deps;
    }

    checked_deps |= deps_to_check;
    deps_to_check= further_deps;
  } while (further_deps != 0);

  
  /* Now, walk the join order and calculate the fanout */
  double fanout= 1;
  for (JOIN_TAB *tab= first_top_level_tab(join, WITHOUT_CONST_TABLES); tab;
       tab= next_top_level_tab(join, tab))
  {
5576 5577 5578 5579 5580 5581 5582
    /* 
      Ignore SJM nests. They have tab->table==NULL. There is no point to walk
      inside them, because GROUP BY clause cannot refer to tables from within
      subquery.
    */
    if (!tab->is_sjm_nest() && (tab->table->map & checked_deps) && 
        !tab->emb_sj_nest && 
5583 5584
        tab->records_read != 0)
    {
5585
      fanout *= tab->records_read;
5586 5587
    }
  } 
5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673
  return fanout;
}


#if 0
void check_out_index_stats(JOIN *join)
{
  ORDER *order;
  uint n_order_items;

  /*
    First, collect the keys that we can use in each table.
    We can use a key if 
    - all tables refer to it.
  */
  key_map key_start_use[MAX_TABLES];
  key_map key_infix_use[MAX_TABLES];
  table_map key_used=0;
  table_map non_key_used= 0;
  
  bzero(&key_start_use, sizeof(key_start_use)); //psergey-todo: safe initialization!
  bzero(&key_infix_use, sizeof(key_infix_use));
  
  for (order= join->group_list; order; order= order->next)
  {
    Item *item= order->item[0];

    if (item->real_type() == Item::FIELD_ITEM)
    {
      if (item->used_tables() & OUTER_REF_TABLE_BIT)
        continue; /* outside references are like constants for us */

      Field *field= ((Item_field*)item->real_item())->field;
      uint table_no= field->table->tablenr;
      if (!(non_key_used && table_map(1) << table_no) && 
          !field->part_of_key.is_clear_all())
      {
        key_map infix_map= field->part_of_key;
        infix_map.subtract(field->key_start);
        key_start_use[table_no].merge(field->key_start);
        key_infix_use[table_no].merge(infix_map);
        key_used |= table_no;
      }
      continue;
    }
    /* 
      Note: the below will cause clauses like GROUP BY YEAR(date) not to be
      handled. 
    */
    non_key_used |= item->used_tables();
  }
  
  Table_map_iterator tm_it(key_used & ~non_key_used);
  int tableno;
  while ((tableno = tm_it.next_bit()) != Table_map_iterator::BITMAP_END)
  {
    key_map::iterator key_it(key_start_use);
    int keyno;
    while ((keyno = tm_it.next_bit()) != key_map::iterator::BITMAP_END)
    {
      for (order= join->group_list; order; order= order->next)
      {
        Item *item= order->item[0];
        if (item->used_tables() & (table_map(1) << tableno))
        {
          DBUG_ASSERT(item->real_type() == Item::FIELD_ITEM);
        }
      }
      /*
      if (continuation)
      {
        walk through list and find which key parts are occupied;
        // note that the above can't be made any faster.
      }
      else
        use rec_per_key[0];
      
      find out the cardinality.
      check if cardinality decreases if we use it;
      */
    }
  }
}
#endif


5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691
/*
  Get an estimate of how many records will be produced after the GROUP BY
  operation.

  @param join           Join we're operating on 
  @param join_op_rows   How many records will be produced by the join
                        operations (this is what join optimizer produces)
  
  @seealso
     See also optimize_semijoin_nests(), grep for "Adjust output cardinality 
     estimates".  Very similar code there that is not joined with this one
     because we operate on different data structs and too much effort is
     needed to abstract them out.

  @return
     Number of records we expect to get after the GROUP BY operation
*/

5692
double get_post_group_estimate(JOIN* join, double join_op_rows)
5693 5694 5695 5696
{
  table_map tables_in_group_list= table_map(0);

  /* Find out which tables are used in GROUP BY list */
5697
  for (ORDER *order= join->group_list_for_estimates; order; order= order->next)
5698 5699
  {
    Item *item= order->item[0];
5700 5701
    table_map item_used_tables= item->used_tables();
    if (item_used_tables & RAND_TABLE_BIT)
5702 5703 5704 5705
    {
      /* Each join output record will be in its own group */
      return join_op_rows;
    }
5706
    tables_in_group_list|= item_used_tables;
5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717
  }
  tables_in_group_list &= ~PSEUDO_TABLE_BITS;

  /*
    Use join fanouts to calculate the max. number of records in the group-list
  */
  double fanout_rows[MAX_KEY];
  bzero(&fanout_rows, sizeof(fanout_rows));
  double out_rows;
  
  out_rows= get_fanout_with_deps(join, tables_in_group_list);
5718 5719 5720

#if 0
  /* The following will be needed when making use of index stats: */
5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738
  /* 
    Also generate max. number of records for each of the tables mentioned 
    in the group-list. We'll use that a baseline number that we'll try to 
    reduce by using
     - #table-records 
     - index statistics.
  */
  Table_map_iterator tm_it(tables_in_group_list);
  int tableno;
  while ((tableno = tm_it.next_bit()) != Table_map_iterator::BITMAP_END)
  {
    fanout_rows[tableno]= get_fanout_with_deps(join, table_map(1) << tableno);
  }
  
  /*
    Try to bring down estimates using index statistics.
  */
  //check_out_index_stats(join);
5739 5740
#endif

5741
  return out_rows;
5742 5743 5744 5745 5746 5747
}


/**
  Execute a subquery IN predicate via materialization.

5748
  @details
5749 5750 5751 5752 5753 5754 5755 5756 5757
  If needed materialize the subquery into a temporary table, then
  copmpute the predicate via a lookup into this table.

  @retval TRUE  if error
  @retval FALSE otherwise
*/

int subselect_hash_sj_engine::exec()
{
5758
  Item_in_subselect *item_in= item->get_IN_subquery();
5759
  SELECT_LEX *save_select= thd->lex->current_select;
5760
  subselect_partial_match_engine *pm_engine= NULL;
5761
  int res= 0;
5762 5763 5764 5765 5766 5767
  DBUG_ENTER("subselect_hash_sj_engine::exec");

  /*
    Optimize and materialize the subquery during the first execution of
    the subquery predicate.
  */
5768
  thd->lex->current_select= materialize_engine->select_lex;
5769
  /* The subquery should be optimized, and materialized only once. */
5770 5771
  DBUG_ASSERT(materialize_join->optimization_state == JOIN::OPTIMIZATION_DONE &&
              !is_materialized);
5772 5773
  res= materialize_join->exec();
  if (unlikely((res= (res || thd->is_error()))))
5774
    goto err;
5775

5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795
  /*
    TODO:
    - Unlock all subquery tables as we don't need them. To implement this
      we need to add new functionality to JOIN::join_free that can unlock
      all tables in a subquery (and all its subqueries).
    - The temp table used for grouping in the subquery can be freed
      immediately after materialization (yet it's done together with
      unlocking).
  */
  is_materialized= TRUE;
  /*
    If the subquery returned no rows, the temporary table is empty, so we know
    directly that the result of IN is FALSE. We first update the table
    statistics, then we test if the temporary table for the query result is
    empty.
  */
  tmp_table->file->info(HA_STATUS_VARIABLE);
  if (!tmp_table->file->stats.records)
  {
    /* The value of IN will not change during this execution. */
5796 5797
    item_in->reset();
    item_in->make_const();
5798
    item_in->set_first_execution();
5799
    thd->lex->current_select= save_select;
5800 5801 5802
    DBUG_RETURN(FALSE);
  }

5803 5804 5805 5806 5807 5808 5809 5810 5811
  /*
    TIMOUR: The schema-based analysis for partial matching can be done once for
    prepared statement and remembered. It is done here to remove the need to
    save/restore all related variables between each re-execution, thus making
    the code simpler.
  */
  strategy= get_strategy_using_schema();
  /* This call may discover that we don't need partial matching at all. */
  strategy= get_strategy_using_data();
5812 5813
  if (strategy == PARTIAL_MATCH)
  {
5814
    uint count_pm_keys; /* Total number of keys needed for partial matching. */
unknown's avatar
unknown committed
5815 5816 5817 5818
    MY_BITMAP *nn_key_parts= NULL; /* Key parts of the only non-NULL index. */
    uint count_non_null_columns= 0; /* Number of columns in nn_key_parts. */
    bool has_covering_null_row;
    bool has_covering_null_columns;
5819 5820
    select_materialize_with_stats *result_sink=
      (select_materialize_with_stats *) result;
unknown's avatar
unknown committed
5821
    uint field_count= tmp_table->s->fields;
5822

unknown's avatar
unknown committed
5823 5824 5825 5826 5827 5828 5829 5830
    if (count_partial_match_columns < field_count)
    {
      nn_key_parts= &non_null_key_parts;
      count_non_null_columns= bitmap_bits_set(nn_key_parts);
    }
    has_covering_null_row= (result_sink->get_max_nulls_in_row() == field_count);
    has_covering_null_columns= (count_non_null_columns +
                                count_null_only_columns == field_count);
5831

unknown's avatar
unknown committed
5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842
    if (has_covering_null_row && has_covering_null_columns)
    {
      /*
        The whole table consist of only NULL values. The result of IN is
        a constant UNKNOWN.
      */
      DBUG_ASSERT(tmp_table->file->stats.records == 1);
      item_in->value= 0;
      item_in->null_value= 1;
      item_in->make_const();
      item_in->set_first_execution();
5843
      thd->lex->current_select= save_select;
unknown's avatar
unknown committed
5844 5845
      DBUG_RETURN(FALSE);
    }
5846

unknown's avatar
unknown committed
5847 5848
    if (has_covering_null_row)
    {
Sergei Golubchik's avatar
Sergei Golubchik committed
5849
      DBUG_ASSERT(count_partial_match_columns == field_count);
unknown's avatar
unknown committed
5850 5851 5852 5853
      count_pm_keys= 0;
    }
    else if (has_covering_null_columns)
      count_pm_keys= 1;
5854 5855
    else
      count_pm_keys= count_partial_match_columns - count_null_only_columns +
unknown's avatar
unknown committed
5856
                     (nn_key_parts ? 1 : 0);
5857

5858
    choose_partial_match_strategy(MY_TEST(nn_key_parts),
unknown's avatar
unknown committed
5859
                                  has_covering_null_row,
5860 5861 5862 5863
                                  &partial_match_key_parts);
    DBUG_ASSERT(strategy == PARTIAL_MATCH_MERGE ||
                strategy == PARTIAL_MATCH_SCAN);
    if (strategy == PARTIAL_MATCH_MERGE)
5864
    {
5865
      pm_engine=
5866
        (new (thd->mem_root)
5867 5868
         subselect_rowid_merge_engine(thd,
                                      (subselect_uniquesubquery_engine*)
5869 5870 5871 5872 5873 5874 5875
                                      lookup_engine, tmp_table,
                                      count_pm_keys,
                                      has_covering_null_row,
                                      has_covering_null_columns,
                                      count_columns_with_nulls,
                                      item, result,
                                      semi_join_conds->argument_list()));
5876
      if (!pm_engine ||
5877
          pm_engine->prepare(thd) ||
5878 5879 5880 5881
          ((subselect_rowid_merge_engine*) pm_engine)->
            init(nn_key_parts, &partial_match_key_parts))
      {
        /*
5882 5883 5884 5885
          The call to init() would fail if there was not enough memory
          to allocate all buffers for the rowid merge strategy. In
          this case revert to table scanning which doesn't need any
          big buffers.
5886 5887 5888 5889 5890
        */
        delete pm_engine;
        pm_engine= NULL;
        strategy= PARTIAL_MATCH_SCAN;
      }
5891
    }
5892 5893

    if (strategy == PARTIAL_MATCH_SCAN)
5894
    {
5895
      if (!(pm_engine=
5896
            (new (thd->mem_root)
5897 5898
             subselect_table_scan_engine(thd,
                                         (subselect_uniquesubquery_engine*)
5899 5900 5901 5902 5903 5904
                                         lookup_engine, tmp_table,
                                         item, result,
                                         semi_join_conds->argument_list(),
                                         has_covering_null_row,
                                         has_covering_null_columns,
                                         count_columns_with_nulls))) ||
5905
          pm_engine->prepare(thd))
5906 5907 5908 5909 5910
      {
        /* This is an irrecoverable error. */
        res= 1;
        goto err;
      }
5911 5912 5913
    }
  }

5914
  item_in->get_materialization_tracker()->report_exec_strategy(strategy);
5915 5916
  if (pm_engine)
    lookup_engine= pm_engine;
5917 5918 5919 5920 5921
  item_in->change_engine(lookup_engine);

err:
  thd->lex->current_select= save_select;
  DBUG_RETURN(res);
5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933
}


/**
  Print the state of this engine into a string for debugging and views.
*/

void subselect_hash_sj_engine::print(String *str, enum_query_type query_type)
{
  str->append(STRING_WITH_LEN(" <materialize> ("));
  materialize_engine->print(str, query_type);
  str->append(STRING_WITH_LEN(" ), "));
5934 5935 5936

  if (lookup_engine)
    lookup_engine->print(str, query_type);
5937 5938
  else
    str->append(STRING_WITH_LEN(
5939
           "<engine selected at execution time>"
5940 5941
         ));
}
5942

5943
bool subselect_hash_sj_engine::fix_length_and_dec(Item_cache** row)
5944 5945
{
  DBUG_ASSERT(FALSE);
5946
  return FALSE;
5947 5948 5949 5950 5951 5952 5953
}

void subselect_hash_sj_engine::exclude()
{
  DBUG_ASSERT(FALSE);
}

5954
bool subselect_hash_sj_engine::no_tables() const
5955 5956 5957 5958 5959 5960
{
  DBUG_ASSERT(FALSE);
  return FALSE;
}

bool subselect_hash_sj_engine::change_result(Item_subselect *si,
5961 5962
                                             select_result_interceptor *res,
                                             bool temp __attribute__((unused)))
5963 5964 5965 5966 5967 5968
{
  DBUG_ASSERT(FALSE);
  return TRUE;
}


5969 5970 5971 5972
Ordered_key::Ordered_key(uint keyid_arg, TABLE *tbl_arg, Item *search_key_arg,
                         ha_rows null_count_arg, ha_rows min_null_row_arg,
                         ha_rows max_null_row_arg, uchar *row_num_to_rowid_arg)
  : keyid(keyid_arg), tbl(tbl_arg), search_key(search_key_arg),
5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993
    row_num_to_rowid(row_num_to_rowid_arg), null_count(null_count_arg)
{
  DBUG_ASSERT(tbl->file->stats.records > null_count);
  key_buff_elements= tbl->file->stats.records - null_count;
  cur_key_idx= HA_POS_ERROR;

  DBUG_ASSERT((null_count && min_null_row_arg && max_null_row_arg) ||
              (!null_count && !min_null_row_arg && !max_null_row_arg));
  if (null_count)
  {
    /* The counters are 1-based, for key access we need 0-based indexes. */
    min_null_row= min_null_row_arg - 1;
    max_null_row= max_null_row_arg - 1;
  }
  else
    min_null_row= max_null_row= 0;
}


Ordered_key::~Ordered_key()
{
5994
  my_free(key_buff);
5995
  my_bitmap_free(&null_key);
5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012
}


/*
  Cleanup that needs to be done for each PS (re)execution.
*/

void Ordered_key::cleanup()
{
  /*
    Currently these keys are recreated for each PS re-execution, thus
    there is nothing to cleanup, the whole object goes away after execution
    is over. All handler related initialization/deinitialization is done by
    the parent subselect_rowid_merge_engine object.
  */
}

6013

6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025
/*
  Initialize a multi-column index.
*/

bool Ordered_key::init(MY_BITMAP *columns_to_index)
{
  THD *thd= tbl->in_use;
  uint cur_key_col= 0;
  Item_field *cur_tmp_field;
  Item_func_lt *fn_less_than;

  key_column_count= bitmap_bits_set(columns_to_index);
6026 6027
  key_columns= thd->alloc<Item_field*>(key_column_count);
  compare_pred= thd->alloc<Item_func_lt*>(key_column_count);
6028

unknown's avatar
unknown committed
6029 6030 6031
  if (!key_columns || !compare_pred)
    return TRUE; /* Revert to table scan partial match. */

6032 6033 6034 6035
  for (uint i= 0; i < columns_to_index->n_bits; i++)
  {
    if (!bitmap_is_set(columns_to_index, i))
      continue;
Monty's avatar
Monty committed
6036
    cur_tmp_field= new (thd->mem_root) Item_field(thd, tbl->field[i]);
6037
    /* Create the predicate (tmp_column[i] < outer_ref[i]). */
Monty's avatar
Monty committed
6038
    fn_less_than= new (thd->mem_root) Item_func_lt(thd, cur_tmp_field,
6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066
                                   search_key->element_index(i));
    fn_less_than->fix_fields(thd, (Item**) &fn_less_than);
    key_columns[cur_key_col]= cur_tmp_field;
    compare_pred[cur_key_col]= fn_less_than;
    ++cur_key_col;
  }

  if (alloc_keys_buffers())
  {
    /* TIMOUR revert to partial match via table scan. */
    return TRUE;
  }
  return FALSE;
}


/*
  Initialize a single-column index.
*/

bool Ordered_key::init(int col_idx)
{
  THD *thd= tbl->in_use;

  key_column_count= 1;

  // TIMOUR: check for mem allocation err, revert to scan

6067 6068
  key_columns= thd->alloc<Item_field*>(1);
  compare_pred= thd->alloc<Item_func_lt*>(1);
6069

Monty's avatar
Monty committed
6070
  key_columns[0]= new (thd->mem_root) Item_field(thd, tbl->field[col_idx]);
6071
  /* Create the predicate (tmp_column[i] < outer_ref[i]). */
Monty's avatar
Monty committed
6072
  compare_pred[0]= new (thd->mem_root) Item_func_lt(thd, key_columns[0],
6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084
                                    search_key->element_index(col_idx));
  compare_pred[0]->fix_fields(thd, (Item**)&compare_pred[0]);

  if (alloc_keys_buffers())
  {
    /* TIMOUR revert to partial match via table scan. */
    return TRUE;
  }
  return FALSE;
}


6085 6086 6087 6088
/*
  Allocate the buffers for both the row number, and the NULL-bitmap indexes.
*/

6089 6090 6091 6092
bool Ordered_key::alloc_keys_buffers()
{
  DBUG_ASSERT(key_buff_elements > 0);

6093 6094 6095
  if (!(key_buff= (rownum_t*) my_malloc(PSI_INSTRUMENT_ME,
         static_cast<size_t>(key_buff_elements * sizeof(rownum_t)),
         MYF(MY_WME | MY_THREAD_SPECIFIC))))
6096 6097 6098 6099 6100 6101 6102
    return TRUE;

  /*
    TIMOUR: it is enough to create bitmaps with size
    (max_null_row - min_null_row), and then use min_null_row as
    lookup offset.
  */
6103
  /* Notice that max_null_row is max array index, we need count, so +1. */
6104
  if (my_bitmap_init(&null_key, NULL, (uint)(max_null_row + 1)))
6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125
    return TRUE;

  cur_key_idx= HA_POS_ERROR;

  return FALSE;
}


/*
  Quick sort comparison function that compares two rows of the same table
  indentfied with their row numbers.

  @retval -1
  @retval  0
  @retval +1
*/

int
Ordered_key::cmp_keys_by_row_data(ha_rows a, ha_rows b)
{
  uchar *rowid_a, *rowid_b;
Sergei Golubchik's avatar
Sergei Golubchik committed
6126
  int error;
6127
  int cmp_res;
6128 6129 6130 6131 6132 6133 6134 6135 6136
  /* The length in bytes of the rowids (positions) of tmp_table. */
  uint rowid_length= tbl->file->ref_length;

  if (a == b)
    return 0;
  /* Get the corresponding rowids. */
  rowid_a= row_num_to_rowid + a * rowid_length;
  rowid_b= row_num_to_rowid + b * rowid_length;
  /* Fetch the rows for comparison. */
6137
  if (unlikely((error= tbl->file->ha_rnd_pos(tbl->record[0], rowid_a))))
Michael Widenius's avatar
Michael Widenius committed
6138
  {
Michael Widenius's avatar
Michael Widenius committed
6139
    /* purecov: begin inspected */
6140
    tbl->file->print_error(error, MYF(ME_FATAL));  // Sets fatal_error
Michael Widenius's avatar
Michael Widenius committed
6141
    return 0;
Michael Widenius's avatar
Michael Widenius committed
6142
    /* purecov: end */
Michael Widenius's avatar
Michael Widenius committed
6143
  }
6144
  if (unlikely((error= tbl->file->ha_rnd_pos(tbl->record[1], rowid_b))))
Michael Widenius's avatar
Michael Widenius committed
6145
  {
Michael Widenius's avatar
Michael Widenius committed
6146
    /* purecov: begin inspected */
6147
    tbl->file->print_error(error, MYF(ME_FATAL));  // Sets fatal_error
Michael Widenius's avatar
Michael Widenius committed
6148
    return 0;
Michael Widenius's avatar
Michael Widenius committed
6149
    /* purecov: end */
Michael Widenius's avatar
Michael Widenius committed
6150
  }    
6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176
  /*
    Compare the two rows by the corresponding values of the indexed
    columns.
  */
  for (uint i= 0; i < key_column_count; i++)
  {
    Field *cur_field= key_columns[i]->field;
    if ((cmp_res= cur_field->cmp_offset(tbl->s->rec_buff_length)))
      return (cmp_res > 0 ? 1 : -1);
  }
  return 0;
}


int
Ordered_key::cmp_keys_by_row_data_and_rownum(Ordered_key *key,
                                             rownum_t* a, rownum_t* b)
{
  /* The result of comparing the two keys according to their row data. */
  int cmp_row_res= key->cmp_keys_by_row_data(*a, *b);
  if (cmp_row_res)
    return cmp_row_res;
  return (*a < *b) ? -1 : (*a > *b) ? 1 : 0;
}


6177
bool Ordered_key::sort_keys()
6178
{
6179 6180
  if (tbl->file->ha_rnd_init_with_error(0))
    return TRUE;
6181
  my_qsort2(key_buff, (size_t) key_buff_elements, sizeof(rownum_t),
6182 6183 6184
            (qsort2_cmp) &cmp_keys_by_row_data_and_rownum, (void*) this);
  /* Invalidate the current row position. */
  cur_key_idx= HA_POS_ERROR;
6185 6186
  tbl->file->ha_rnd_end();
  return FALSE;
6187 6188 6189
}


6190
/*
6191 6192 6193
  The fraction of rows that do not contain NULL in the columns indexed by
  this key.

6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205
  @retval  1  if there are no NULLs
  @retval  0  if only NULLs
*/

double Ordered_key::null_selectivity()
{
  /* We should not be processing empty tables. */
  DBUG_ASSERT(tbl->file->stats.records);
  return (1 - (double) null_count / (double) tbl->file->stats.records);
}


6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226
/*
  Compare the value(s) of the current key in 'search_key' with the
  data of the current table record.

  @notes The comparison result follows from the way compare_pred
  is created in Ordered_key::init. Currently compare_pred compares
  a field in of the current row with the corresponding Item that
  contains the search key.

  @param row_num  Number of the row (not index in the key_buff array)

  @retval -1  if (current row  < search_key)
  @retval  0  if (current row == search_key)
  @retval +1  if (current row  > search_key)
*/

int Ordered_key::cmp_key_with_search_key(rownum_t row_num)
{
  /* The length in bytes of the rowids (positions) of tmp_table. */
  uint rowid_length= tbl->file->ref_length;
  uchar *cur_rowid= row_num_to_rowid + row_num * rowid_length;
Sergei Golubchik's avatar
Sergei Golubchik committed
6227
  int error;
6228
  int cmp_res;
6229

6230
  if (unlikely((error= tbl->file->ha_rnd_pos(tbl->record[0], cur_rowid))))
Michael Widenius's avatar
Michael Widenius committed
6231
  {
Michael Widenius's avatar
Michael Widenius committed
6232
    /* purecov: begin inspected */
6233
    tbl->file->print_error(error, MYF(ME_FATAL));  // Sets fatal_error
Michael Widenius's avatar
Michael Widenius committed
6234
    return 0;
Michael Widenius's avatar
Michael Widenius committed
6235
    /* purecov: end */
Michael Widenius's avatar
Michael Widenius committed
6236
  }
6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329

  for (uint i= 0; i < key_column_count; i++)
  {
    cmp_res= compare_pred[i]->get_comparator()->compare();
    /* Unlike Arg_comparator::compare_row() here there should be no NULLs. */
    DBUG_ASSERT(!compare_pred[i]->null_value);
    if (cmp_res)
      return (cmp_res > 0 ? 1 : -1);
  }
  return 0;
}


/*
  Find a key in a sorted array of keys via binary search.

  see create_subq_in_equalities()
*/

bool Ordered_key::lookup()
{
  DBUG_ASSERT(key_buff_elements);

  ha_rows lo= 0;
  ha_rows hi= key_buff_elements - 1;
  ha_rows mid;
  int cmp_res;

  while (lo <= hi)
  {
    mid= lo + (hi - lo) / 2;
    cmp_res= cmp_key_with_search_key(key_buff[mid]);
    /*
      In order to find the minimum match, check if the pevious element is
      equal or smaller than the found one. If equal, we need to search further
      to the left.
    */
    if (!cmp_res && mid > 0)
      cmp_res= !cmp_key_with_search_key(key_buff[mid - 1]) ? 1 : 0;

    if (cmp_res == -1)
    {
      /* row[mid] < search_key */
      lo= mid + 1;
    }
    else if (cmp_res == 1)
    {
      /* row[mid] > search_key */
      if (!mid)
        goto not_found;
      hi= mid - 1;
    }
    else
    {
      /* row[mid] == search_key */
      cur_key_idx= mid;
      return TRUE;
    }
  }
not_found:
  cur_key_idx= HA_POS_ERROR;
  return FALSE;
}


/*
  Move the current index pointer to the next key with the same column
  values as the current key. Since the index is sorted, all such keys
  are contiguous.
*/

bool Ordered_key::next_same()
{
  DBUG_ASSERT(key_buff_elements);

  if (cur_key_idx < key_buff_elements - 1)
  {
    /*
      TIMOUR:
      The below is quite inefficient, since as a result we will fetch every
      row (except the last one) twice. There must be a more efficient way,
      e.g. swapping record[0] and record[1], and reading only the new record.
    */
    if (!cmp_keys_by_row_data(key_buff[cur_key_idx], key_buff[cur_key_idx + 1]))
    {
      ++cur_key_idx;
      return TRUE;
    }
  }
  return FALSE;
}


6330 6331 6332
void Ordered_key::print(String *str)
{
  uint i;
Monty's avatar
Monty committed
6333 6334 6335 6336 6337 6338 6339 6340

  /* We have to pre-allocate string as we are using qs_append() */
  if (str->alloc(str->length() +
                 5+10+4+ (NAME_LEN+2)*key_column_count+
                 20+11+21+10+FLOATING_POINT_BUFFER*3+50
                 ))
      return;
  str->append(STRING_WITH_LEN("{idx="));
6341
  str->qs_append(keyid);
Monty's avatar
Monty committed
6342 6343
  str->append(STRING_WITH_LEN(", ("));
  for (i= 0; i < key_column_count ; i++)
6344
  {
6345
    str->append(&key_columns[i]->field->field_name);
Monty's avatar
Monty committed
6346
    str->append(STRING_WITH_LEN(", "));
6347
  }
Monty's avatar
Monty committed
6348 6349 6350
  if (key_column_count)
    str->length(str->length() - 2);
  str->append(STRING_WITH_LEN("), "));
6351

Monty's avatar
Monty committed
6352
  str->append(STRING_WITH_LEN("null_bitmap: (bits="));
6353
  str->qs_append(null_key.n_bits);
Monty's avatar
Monty committed
6354
  str->append(STRING_WITH_LEN(", nulls= "));
6355
  str->qs_append((double)null_count);
Monty's avatar
Monty committed
6356
  str->append(STRING_WITH_LEN(", min_null= "));
6357
  str->qs_append((double)min_null_row);
Monty's avatar
Monty committed
6358
  str->append(STRING_WITH_LEN(", max_null= "));
6359
  str->qs_append((double)max_null_row);
Monty's avatar
Monty committed
6360
  str->append(STRING_WITH_LEN("), "));
6361 6362 6363 6364 6365

  str->append('}');
}


6366
subselect_partial_match_engine::subselect_partial_match_engine(
6367
  THD *thd_arg,
6368
  subselect_uniquesubquery_engine *engine_arg,
6369 6370 6371
  TABLE *tmp_table_arg, Item_subselect *item_arg,
  select_result_interceptor *result_arg,
  List<Item> *equi_join_conds_arg,
unknown's avatar
unknown committed
6372
  bool has_covering_null_row_arg,
unknown's avatar
unknown committed
6373 6374
  bool has_covering_null_columns_arg,
  uint count_columns_with_nulls_arg)
6375
  :subselect_engine(item_arg, result_arg),
6376 6377
   tmp_table(tmp_table_arg), lookup_engine(engine_arg),
   equi_join_conds(equi_join_conds_arg),
unknown's avatar
unknown committed
6378
   has_covering_null_row(has_covering_null_row_arg),
unknown's avatar
unknown committed
6379 6380
   has_covering_null_columns(has_covering_null_columns_arg),
   count_columns_with_nulls(count_columns_with_nulls_arg)
6381 6382 6383
{
  thd= thd_arg;
}
6384 6385 6386 6387


int subselect_partial_match_engine::exec()
{
6388
  Item_in_subselect *item_in= item->get_IN_subquery();
6389
  int lookup_res;
6390
  DBUG_ASSERT(thd);
6391

6392 6393 6394
  DBUG_ASSERT(!(item_in->left_expr_has_null() &&
                item_in->is_top_level_item()));

6395 6396 6397
  Subq_materialization_tracker *tracker= item_in->get_materialization_tracker();
  tracker->increment_loops_count();

6398
  if (!item_in->left_expr_has_null())
6399
  {
6400 6401
    /* Try to find a matching row by index lookup. */
    if (lookup_engine->copy_ref_key(false))
6402
    {
6403
      /* The result is FALSE based on the outer reference. */
6404 6405
      item_in->value= 0;
      item_in->null_value= 0;
6406
      return 0;
6407
    }
6408
    else
6409
    {
6410
      /* Search for a complete match. */
6411
      tracker->increment_index_lookups();
6412 6413
      if ((lookup_res= lookup_engine->index_lookup()))
      {
6414
        /* An error occurred during lookup(). */
6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429
        item_in->value= 0;
        item_in->null_value= 0;
        return lookup_res;
      }
      else if (item_in->value || !count_columns_with_nulls)
      {
        /*
          A complete match was found, the result of IN is TRUE.
          If no match was found, and there are no NULLs in the materialized
          subquery, then the result is guaranteed to be false because this
          branch is executed when the outer reference has no NULLs as well.
          Notice: (this->item == lookup_engine->item)
        */
        return 0;
      }
6430 6431 6432
    }
  }

unknown's avatar
unknown committed
6433
  if (has_covering_null_row)
6434 6435
  {
    /*
Ian Gilfillan's avatar
Ian Gilfillan committed
6436
      If there is a NULL-only row that covers all columns the result of IN
6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455
      is UNKNOWN. 
    */
    item_in->value= 0;
    /*
      TIMOUR: which one is the right way to propagate an UNKNOWN result?
      Should we also set empty_result_set= FALSE; ???
    */
    //item_in->was_null= 1;
    item_in->null_value= 1;
    return 0;
  }

  /*
    There is no complete match. Look for a partial match (UNKNOWN result), or
    no match (FALSE).
  */
  if (tmp_table->file->inited)
    tmp_table->file->ha_index_end();

6456
  tracker->increment_partial_matches();
6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489
  if (partial_match())
  {
    /* The result of IN is UNKNOWN. */
    item_in->value= 0;
    /*
      TIMOUR: which one is the right way to propagate an UNKNOWN result?
      Should we also set empty_result_set= FALSE; ???
    */
    //item_in->was_null= 1;
    item_in->null_value= 1;
  }
  else
  {
    /* The result of IN is FALSE. */
    item_in->value= 0;
    /*
      TIMOUR: which one is the right way to propagate an UNKNOWN result?
      Should we also set empty_result_set= FALSE; ???
    */
    //item_in->was_null= 0;
    item_in->null_value= 0;
  }

  return 0;
}


void subselect_partial_match_engine::print(String *str,
                                           enum_query_type query_type)
{
  /*
    Should never be called as the actual engine cannot be known at query
    optimization time.
unknown's avatar
unknown committed
6490
    DBUG_ASSERT(FALSE);
6491 6492 6493 6494
  */
}


6495 6496 6497
/*
  @param non_null_key_parts  
  @param partial_match_key_parts  A union of all single-column NULL key parts.
6498 6499 6500 6501

  @retval FALSE  the engine was initialized successfully
  @retval TRUE   there was some (memory allocation) error during initialization,
                 such errors should be interpreted as revert to other strategy
6502 6503 6504 6505 6506 6507
*/

bool
subselect_rowid_merge_engine::init(MY_BITMAP *non_null_key_parts,
                                   MY_BITMAP *partial_match_key_parts)
{
6508
  THD *thd= get_thd();
6509 6510 6511 6512 6513 6514
  /* The length in bytes of the rowids (positions) of tmp_table. */
  uint rowid_length= tmp_table->file->ref_length;
  ha_rows row_count= tmp_table->file->stats.records;
  rownum_t cur_rownum= 0;
  select_materialize_with_stats *result_sink=
    (select_materialize_with_stats *) result;
6515
  uint cur_keyid= 0;
6516
  Item *left= item->get_IN_subquery()->left_exp();
6517 6518
  int error;

unknown's avatar
unknown committed
6519
  if (merge_keys_count == 0)
6520
  {
unknown's avatar
unknown committed
6521 6522
    DBUG_ASSERT(bitmap_bits_set(partial_match_key_parts) == 0 ||
                has_covering_null_row);
6523 6524 6525 6526
    /* There is nothing to initialize, we will only do regular lookups. */
    return FALSE;
  }

unknown's avatar
unknown committed
6527 6528 6529 6530 6531 6532 6533
  /*
    If all nullable columns contain only NULLs, there must be one index
    over all non-null columns.
  */
  DBUG_ASSERT(!has_covering_null_columns ||
              (has_covering_null_columns &&
               merge_keys_count == 1 && non_null_key_parts));
6534 6535
  /*
    Allocate buffers to hold the merged keys and the mapping between rowids and
unknown's avatar
unknown committed
6536 6537
    row numbers. All small buffers are allocated in the runtime memroot. Big
    buffers are allocated from the OS via malloc.
6538
  */
6539 6540
  if (!(merge_keys= thd->alloc<Ordered_key*>(merge_keys_count)) ||
      !(null_bitmaps= thd->alloc<MY_BITMAP*>(merge_keys_count)) ||
6541 6542 6543
      !(row_num_to_rowid= (uchar*) my_malloc(PSI_INSTRUMENT_ME,
                              static_cast<size_t>(row_count * rowid_length),
                              MYF(MY_WME | MY_THREAD_SPECIFIC))))
6544 6545 6546 6547 6548
    return TRUE;

  /* Create the only non-NULL key if there is any. */
  if (non_null_key_parts)
  {
6549 6550 6551
    non_null_key= (new (thd->mem_root)
                   Ordered_key(cur_keyid, tmp_table, left,
                               0, 0, 0, row_num_to_rowid));
6552 6553
    if (non_null_key->init(non_null_key_parts))
      return TRUE;
6554 6555 6556
    merge_keys[cur_keyid]= non_null_key;
    merge_keys[cur_keyid]->first();
    ++cur_keyid;
6557 6558 6559
  }

  /*
unknown's avatar
unknown committed
6560 6561
    If all nullable columns contain NULLs, the only key that is needed is the
    only non-NULL key that is already created above.
6562
  */
unknown's avatar
unknown committed
6563
  if (!has_covering_null_columns)
6564
  {
6565 6566
    if (my_bitmap_init_memroot(&matching_keys, merge_keys_count, thd->mem_root) ||
        my_bitmap_init_memroot(&matching_outer_cols, merge_keys_count, thd->mem_root))
6567 6568 6569 6570 6571 6572 6573 6574
      return TRUE;

    /*
      Create one single-column NULL-key for each column in
      partial_match_key_parts.
    */
    for (uint i= 0; i < partial_match_key_parts->n_bits; i++)
    {
unknown's avatar
unknown committed
6575 6576 6577
      /* Skip columns that have no NULLs, or contain only NULLs. */
      if (!bitmap_is_set(partial_match_key_parts, i) ||
          result_sink->get_null_count_of_col(i) == row_count)
6578 6579
        continue;

6580 6581 6582 6583 6584 6585 6586
      merge_keys[cur_keyid]= new (thd->mem_root)
          Ordered_key(cur_keyid, tmp_table,
                      left->element_index(i),
                      result_sink->get_null_count_of_col(i),
                      result_sink->get_min_null_of_col(i),
                      result_sink->get_max_null_of_col(i),
                      row_num_to_rowid);
unknown's avatar
unknown committed
6587 6588 6589
      if (merge_keys[cur_keyid]->init(i))
        return TRUE;
      merge_keys[cur_keyid]->first();
6590
      ++cur_keyid;
6591 6592
    }
  }
unknown's avatar
unknown committed
6593
  DBUG_ASSERT(cur_keyid == merge_keys_count);
6594 6595

  /* Populate the indexes with data from the temporary table. */
6596
  if (unlikely(tmp_table->file->ha_rnd_init_with_error(1)))
6597
    return TRUE;
6598 6599 6600 6601 6602 6603
  tmp_table->file->extra_opt(HA_EXTRA_CACHE,
                             current_thd->variables.read_buff_size);
  tmp_table->null_row= 0;
  while (TRUE)
  {
    error= tmp_table->file->ha_rnd_next(tmp_table->record[0]);
6604 6605 6606

    if (error == HA_ERR_ABORTED_BY_USER)
      break;
6607 6608 6609 6610 6611
    /*
      This is a temp table that we fully own, there should be no other
      cause to stop the iteration than EOF.
    */
    DBUG_ASSERT(!error || error == HA_ERR_END_OF_FILE);
6612
    if (unlikely(error == HA_ERR_END_OF_FILE))
6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631
    {
      DBUG_ASSERT(cur_rownum == tmp_table->file->stats.records);
      break;
    }

    /*
      Save the position of this record in the row_num -> rowid mapping.
    */
    tmp_table->file->position(tmp_table->record[0]);
    memcpy(row_num_to_rowid + cur_rownum * rowid_length,
           tmp_table->file->ref, rowid_length);

    /* Add the current row number to the corresponding keys. */
    if (non_null_key)
    {
      /* By definition there are no NULLs in the non-NULL key. */
      non_null_key->add_key(cur_rownum);
    }

unknown's avatar
unknown committed
6632
    for (uint i= (non_null_key ? 1 : 0); i < merge_keys_count; i++)
6633 6634
    {
      /*
Ian Gilfillan's avatar
Ian Gilfillan committed
6635
        Check if the first and only indexed column contains NULL in the current
6636 6637
        row, and add the row number to the corresponding key.
      */
6638
      if (merge_keys[i]->get_field(0)->is_null())
6639 6640 6641 6642 6643 6644 6645 6646 6647
        merge_keys[i]->set_null(cur_rownum);
      else
        merge_keys[i]->add_key(cur_rownum);
    }
    ++cur_rownum;
  }

  tmp_table->file->ha_rnd_end();

6648
  /* Sort all the keys by their NULL selectivity. */
unknown's avatar
unknown committed
6649
  my_qsort(merge_keys, merge_keys_count, sizeof(Ordered_key*),
6650 6651
           (qsort_cmp) cmp_keys_by_null_selectivity);

6652
  /* Sort the keys in each of the indexes. */
unknown's avatar
unknown committed
6653
  for (uint i= 0; i < merge_keys_count; i++)
6654 6655
    if (merge_keys[i]->sort_keys())
      return TRUE;
6656

6657
  if (pq.init(merge_keys_count, false,
6658
              subselect_rowid_merge_engine::cmp_keys_by_cur_rownum))
6659 6660
    return TRUE;

6661 6662
  item->get_IN_subquery()->get_materialization_tracker()->
      report_partial_merge_keys(merge_keys, merge_keys_count);
6663 6664 6665 6666 6667 6668
  return FALSE;
}


subselect_rowid_merge_engine::~subselect_rowid_merge_engine()
{
6669
  /* None of the resources below is allocated if there are no ordered keys. */
unknown's avatar
unknown committed
6670
  if (merge_keys_count)
6671
  {
6672
    my_free(row_num_to_rowid);
unknown's avatar
unknown committed
6673
    for (uint i= 0; i < merge_keys_count; i++)
6674 6675 6676 6677
      delete merge_keys[i];
    if (tmp_table->file->inited == handler::RND)
      tmp_table->file->ha_rnd_end();
  }
6678 6679 6680 6681 6682
}


void subselect_rowid_merge_engine::cleanup()
{
6683 6684 6685
}


6686
/*
6687 6688 6689 6690 6691 6692 6693 6694 6695
  Quick sort comparison function to compare keys in order of decreasing bitmap
  selectivity, so that the most selective keys come first.

  @param  k1 first key to compare
  @param  k2 second key to compare

  @retval  1  if k1 is less selective than k2
  @retval  0  if k1 is equally selective as k2
  @retval -1  if k1 is more selective than k2
6696 6697 6698
*/

int
6699 6700
subselect_rowid_merge_engine::cmp_keys_by_null_selectivity(Ordered_key **k1,
                                                           Ordered_key **k2)
6701
{
6702 6703 6704
  double k1_sel= (*k1)->null_selectivity();
  double k2_sel= (*k2)->null_selectivity();
  if (k1_sel < k2_sel)
6705
    return 1;
6706 6707 6708
  if (k1_sel > k2_sel)
    return -1;
  return 0;
6709 6710 6711 6712 6713 6714 6715
}


/*
*/

int
6716 6717 6718
subselect_rowid_merge_engine::cmp_keys_by_cur_rownum(void *,
                                                     const Ordered_key *k1,
                                                     const Ordered_key *k2)
6719
{
6720 6721
  rownum_t r1= k1->current();
  rownum_t r2= k2->current();
6722 6723 6724 6725 6726 6727 6728 6729 6730

  return (r1 < r2) ? -1 : (r1 > r2) ? 1 : 0;
}


/*
  Check if certain table row contains a NULL in all columns for which there is
  no match in the corresponding value index.

unknown's avatar
unknown committed
6731 6732 6733 6734
  @note
  There is no need to check the columns that contain only NULLs, because
  those are guaranteed to match.

6735 6736 6737 6738 6739 6740
  @retval TRUE if a NULL row exists
  @retval FALSE otherwise
*/

bool subselect_rowid_merge_engine::test_null_row(rownum_t row_num)
{
6741
  Ordered_key *cur_key;
unknown's avatar
unknown committed
6742
  for (uint i = 0; i < merge_keys_count; i++)
6743
  {
6744
    cur_key= merge_keys[i];
unknown's avatar
unknown committed
6745
    if (bitmap_is_set(&matching_keys, cur_key->get_keyid()))
6746 6747
    {
      /*
unknown's avatar
unknown committed
6748 6749
        The key 'i' (with id 'cur_keyid') already matches a value in row
        'row_num', thus we skip it as it can't possibly match a NULL.
6750 6751 6752
      */
      continue;
    }
6753
    if (!cur_key->is_null(row_num))
6754 6755 6756 6757 6758 6759
      return FALSE;
  }
  return TRUE;
}


unknown's avatar
unknown committed
6760 6761
/**
  Test if a subset of NULL-able columns contains a row of NULLs.
unknown's avatar
unknown committed
6762 6763
  @retval TRUE  if such a row exists
  @retval FALSE no complementing null row
unknown's avatar
unknown committed
6764 6765 6766 6767 6768 6769 6770
*/

bool subselect_rowid_merge_engine::
exists_complementing_null_row(MY_BITMAP *keys_to_complement)
{
  rownum_t highest_min_row= 0;
  rownum_t lowest_max_row= UINT_MAX;
unknown's avatar
unknown committed
6771
  uint count_null_keys, i;
unknown's avatar
unknown committed
6772 6773
  Ordered_key *cur_key;

unknown's avatar
unknown committed
6774
  if (!count_columns_with_nulls)
unknown's avatar
unknown committed
6775 6776
  {
    /*
unknown's avatar
unknown committed
6777 6778
      If there are both NULLs and non-NUll values in the outer reference, and
      the subquery contains no NULLs, a complementing NULL row cannot exist.
unknown's avatar
unknown committed
6779
    */
unknown's avatar
unknown committed
6780
    return FALSE;
unknown's avatar
unknown committed
6781 6782
  }

unknown's avatar
unknown committed
6783
  for (i= (non_null_key ? 1 : 0), count_null_keys= 0; i < merge_keys_count; i++)
unknown's avatar
unknown committed
6784 6785 6786 6787
  {
    cur_key= merge_keys[i];
    if (bitmap_is_set(keys_to_complement, cur_key->get_keyid()))
      continue;
unknown's avatar
unknown committed
6788 6789 6790 6791 6792
    if (!cur_key->get_null_count())
    {
      /* If there is column without NULLs, there cannot be a partial match. */
      return FALSE;
    }
unknown's avatar
unknown committed
6793 6794 6795 6796
    if (cur_key->get_min_null_row() > highest_min_row)
      highest_min_row= cur_key->get_min_null_row();
    if (cur_key->get_max_null_row() < lowest_max_row)
      lowest_max_row= cur_key->get_max_null_row();
unknown's avatar
unknown committed
6797
    null_bitmaps[count_null_keys++]= cur_key->get_null_key();
unknown's avatar
unknown committed
6798 6799 6800 6801 6802 6803 6804 6805
  }

  if (lowest_max_row < highest_min_row)
  {
    /* The intersection of NULL rows is empty. */
    return FALSE;
  }

Monty's avatar
Monty committed
6806
  return bitmap_exists_intersection(null_bitmaps,
unknown's avatar
unknown committed
6807
                                    count_null_keys,
Monty's avatar
Monty committed
6808 6809
                                    (uint)highest_min_row,
                                    (uint)lowest_max_row);
unknown's avatar
unknown committed
6810 6811 6812
}


6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824
/*
  @retval TRUE  there is a partial match (UNKNOWN)
  @retval FALSE  there is no match at all (FALSE)
*/

bool subselect_rowid_merge_engine::partial_match()
{
  Ordered_key *min_key; /* Key that contains the current minimum position. */
  rownum_t min_row_num; /* Current row number of min_key. */
  Ordered_key *cur_key;
  rownum_t cur_row_num;
  uint count_nulls_in_search_key= 0;
unknown's avatar
unknown committed
6825
  uint max_null_in_any_row=
unknown's avatar
unknown committed
6826
    ((select_materialize_with_stats *) result)->get_max_nulls_in_row();
6827
  bool res= FALSE;
6828 6829 6830

  /* If there is a non-NULL key, it must be the first key in the keys array. */
  DBUG_ASSERT(!non_null_key || (non_null_key && merge_keys[0] == non_null_key));
unknown's avatar
unknown committed
6831
  /* The prioryty queue for keys must be empty. */
6832
  DBUG_ASSERT(pq.is_empty());
6833 6834

  /* All data accesses during execution are via handler::ha_rnd_pos() */
6835
  if (unlikely(tmp_table->file->ha_rnd_init_with_error(0)))
6836 6837 6838 6839
  {
    res= FALSE;
    goto end;
  }
6840

6841 6842
  /* Check if there is a match for the columns of the only non-NULL key. */
  if (non_null_key && !non_null_key->lookup())
6843 6844 6845 6846
  {
    res= FALSE;
    goto end;
  }
6847 6848

  /*
Ian Gilfillan's avatar
Ian Gilfillan committed
6849
    If all nullable columns contain only NULLs, then there is a guaranteed
unknown's avatar
unknown committed
6850 6851 6852
    partial match, and we don't need to search for a matching row.
  */
  if (has_covering_null_columns)
6853 6854 6855 6856
  {
    res= TRUE;
    goto end;
  }
6857 6858

  if (non_null_key)
6859
    pq.push(non_null_key);
6860 6861 6862 6863
  /*
    Do not add the non_null_key, since it was already processed above.
  */
  bitmap_clear_all(&matching_outer_cols);
6864
  for (uint i= MY_TEST(non_null_key); i < merge_keys_count; i++)
6865 6866
  {
    DBUG_ASSERT(merge_keys[i]->get_column_count() == 1);
unknown's avatar
unknown committed
6867
    if (merge_keys[i]->get_search_key(0)->null_value)
6868 6869
    {
      ++count_nulls_in_search_key;
6870
      bitmap_set_bit(&matching_outer_cols, merge_keys[i]->get_keyid());
6871 6872
    }
    else if (merge_keys[i]->lookup())
6873
      pq.push(merge_keys[i]);
6874 6875 6876 6877
  }

  /*
    If the outer reference consists of only NULLs, or if it has NULLs in all
unknown's avatar
unknown committed
6878 6879
    nullable columns (above we guarantee there is a match for the non-null
    coumns), the result is UNKNOWN.
6880
  */
6881
  if (count_nulls_in_search_key == merge_keys_count - MY_TEST(non_null_key))
6882 6883 6884 6885
  {
    res= TRUE;
    goto end;
  }
6886

unknown's avatar
unknown committed
6887 6888 6889 6890 6891 6892
  /*
    If the outer row has NULLs in some columns, and
    there is no match for any of the remaining columns, and
    there is a subquery row with NULLs in all unmatched columns,
    then there is a partial match, otherwise the result is FALSE.
  */
6893
  if (count_nulls_in_search_key && pq.is_empty())
unknown's avatar
unknown committed
6894 6895 6896 6897 6898 6899 6900 6901 6902 6903
  {
    DBUG_ASSERT(!non_null_key);
    /*
      Check if the intersection of all NULL bitmaps of all keys that
      are not in matching_outer_cols is non-empty.
    */
    res= exists_complementing_null_row(&matching_outer_cols);
    goto end;
  }

6904 6905
  /*
    If there is no NULL (sub)row that covers all NULL columns, and there is no
unknown's avatar
unknown committed
6906 6907 6908 6909
    match for any of the NULL columns, the result is FALSE. Notice that if there
    is a non-null key, and there is only one matching key, the non-null key is
    the matching key. This is so, because this method returns FALSE if the
    non-null key doesn't have a match.
6910
  */
unknown's avatar
unknown committed
6911
  if (!count_nulls_in_search_key &&
6912 6913
      (pq.is_empty() ||
       (pq.elements() == 1 && non_null_key &&
unknown's avatar
unknown committed
6914
        max_null_in_any_row < merge_keys_count-1)))
6915
  {
6916
    if (pq.is_empty())
unknown's avatar
unknown committed
6917
    {
unknown's avatar
unknown committed
6918 6919 6920 6921 6922 6923
      DBUG_ASSERT(!non_null_key);
      /*
        The case of a covering null row is handled by
        subselect_partial_match_engine::exec()
      */
      DBUG_ASSERT(max_null_in_any_row != tmp_table->s->fields);
unknown's avatar
unknown committed
6924
    }
6925 6926 6927
    res= FALSE;
    goto end;
  }
6928

6929
  DBUG_ASSERT(!pq.is_empty());
6930

6931
  min_key= pq.pop();
6932
  min_row_num= min_key->current();
6933
  bitmap_set_bit(&matching_keys, min_key->get_keyid());
6934 6935
  bitmap_union(&matching_keys, &matching_outer_cols);
  if (min_key->next_same())
6936
    pq.push(min_key);
6937

6938
  if (pq.is_empty())
6939 6940 6941 6942 6943
  {
    /*
      Check the only matching row of the only key min_key for NULL matches
      in the other columns.
    */
6944 6945
    res= test_null_row(min_row_num);
    goto end;
6946 6947 6948 6949
  }

  while (TRUE)
  {
6950
    cur_key= pq.pop();
6951 6952 6953
    cur_row_num= cur_key->current();

    if (cur_row_num == min_row_num)
6954
      bitmap_set_bit(&matching_keys, cur_key->get_keyid());
6955 6956 6957 6958 6959
    else
    {
      /* Follows from the correct use of priority queue. */
      DBUG_ASSERT(cur_row_num > min_row_num);
      if (test_null_row(min_row_num))
6960 6961 6962 6963
      {
        res= TRUE;
        goto end;
      }
6964 6965 6966 6967
      else
      {
        min_key= cur_key;
        min_row_num= cur_row_num;
unknown's avatar
unknown committed
6968
        bitmap_clear_all(&matching_keys);
6969
        bitmap_set_bit(&matching_keys, min_key->get_keyid());
6970 6971 6972 6973 6974
        bitmap_union(&matching_keys, &matching_outer_cols);
      }
    }

    if (cur_key->next_same())
6975
      pq.push(cur_key);
6976

6977
    if (pq.is_empty())
6978 6979
    {
      /* Check the last row of the last column in PQ for NULL matches. */
6980 6981
      res= test_null_row(min_row_num);
      goto end;
6982 6983 6984
    }
  }

6985
  /* We should never get here - all branches must be handled explicitly above. */
6986
  DBUG_ASSERT(FALSE);
6987 6988

end:
unknown's avatar
unknown committed
6989 6990
  if (!has_covering_null_columns)
    bitmap_clear_all(&matching_keys);
6991
  pq.clear();
6992 6993
  tmp_table->file->ha_rnd_end();
  return res;
6994 6995 6996
}


6997
subselect_table_scan_engine::subselect_table_scan_engine(
6998
  THD *thd,
6999
  subselect_uniquesubquery_engine *engine_arg,
7000 7001 7002 7003
  TABLE *tmp_table_arg,
  Item_subselect *item_arg,
  select_result_interceptor *result_arg,
  List<Item> *equi_join_conds_arg,
unknown's avatar
unknown committed
7004
  bool has_covering_null_row_arg,
unknown's avatar
unknown committed
7005 7006
  bool has_covering_null_columns_arg,
  uint count_columns_with_nulls_arg)
7007
  :subselect_partial_match_engine(thd, engine_arg, tmp_table_arg, item_arg,
7008
                                  result_arg, equi_join_conds_arg,
unknown's avatar
unknown committed
7009
                                  has_covering_null_row_arg,
unknown's avatar
unknown committed
7010 7011
                                  has_covering_null_columns_arg,
                                  count_columns_with_nulls_arg)
7012
{}
7013

7014 7015 7016 7017 7018 7019 7020

/*
  TIMOUR:
  This method is based on subselect_uniquesubquery_engine::scan_table().
  Consider refactoring somehow, 80% of the code is the same.

  for each row_i in tmp_table
7021
  {
7022 7023
    count_matches= 0;
    for each row element row_i[j]
7024
    {
7025 7026
      if (outer_ref[j] is NULL || row_i[j] is NULL || outer_ref[j] == row_i[j])
        ++count_matches;
7027
    }
7028 7029
    if (count_matches == outer_ref.elements)
      return TRUE
7030
  }
7031 7032
  return FALSE
*/
7033

7034 7035 7036 7037 7038 7039 7040
bool subselect_table_scan_engine::partial_match()
{
  List_iterator_fast<Item> equality_it(*equi_join_conds);
  Item *cur_eq;
  uint count_matches;
  int error;
  bool res;
7041

7042
  if (unlikely(tmp_table->file->ha_rnd_init_with_error(1)))
7043 7044 7045 7046 7047
  {
    res= FALSE;
    goto end;
  }

7048
  tmp_table->file->extra_opt(HA_EXTRA_CACHE,
7049
                             get_thd()->variables.read_buff_size);
7050
  for (;;)
7051
  {
7052
    error= tmp_table->file->ha_rnd_next(tmp_table->record[0]);
7053 7054
    if (unlikely(error))
    {
7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081
      if (error == HA_ERR_END_OF_FILE)
      {
        error= 0;
        break;
      }
      else
      {
        error= report_error(tmp_table, error);
        break;
      }
    }

    equality_it.rewind();
    count_matches= 0;
    while ((cur_eq= equality_it++))
    {
      DBUG_ASSERT(cur_eq->type() == Item::FUNC_ITEM &&
                  ((Item_func*)cur_eq)->functype() == Item_func::EQ_FUNC);
      if (!cur_eq->val_int() && !cur_eq->null_value)
        break;
      ++count_matches;
    }
    if (count_matches == tmp_table->s->fields)
    {
      res= TRUE; /* Found a matching row. */
      goto end;
    }
7082
  }
7083 7084 7085

  res= FALSE;
end:
7086
  tmp_table->file->ha_rnd_end();
7087 7088
  return res;
}
7089

7090 7091 7092

void subselect_table_scan_engine::cleanup()
{
7093
}
unknown's avatar
unknown committed
7094

7095

Igor Babaev's avatar
Igor Babaev committed
7096 7097 7098 7099 7100 7101 7102
void Item_subselect::register_as_with_rec_ref(With_element *with_elem)
{
  with_elem->sq_with_rec_ref.link_in_list(this, &this->next_with_rec_ref);
  with_recursive_reference= true;
}


7103 7104 7105 7106 7107 7108
/*
  Create an execution tracker for the expression cache we're using for this
  subselect; add the tracker to the query plan.
*/

void Item_subselect::init_expr_cache_tracker(THD *thd)
7109 7110 7111 7112 7113 7114 7115 7116 7117 7118
{
  if(!expr_cache)
    return;

  Explain_query *qw= thd->lex->explain;
  DBUG_ASSERT(qw);
  Explain_node *node= qw->get_node(unit->first_select()->select_number);
  if (!node)
    return;
  DBUG_ASSERT(expr_cache->type() == Item::EXPR_CACHE_ITEM);
7119
  node->cache_tracker= ((Item_cache_wrapper *)expr_cache)->init_tracker(qw->mem_root);
7120
}
7121 7122 7123 7124 7125 7126 7127 7128 7129


void Subq_materialization_tracker::report_partial_merge_keys(
    Ordered_key **merge_keys, uint merge_keys_count)
{
  partial_match_array_sizes.resize(merge_keys_count, 0);
  for (uint i= 0; i < merge_keys_count; i++)
    partial_match_array_sizes[i]= merge_keys[i]->get_key_buff_elements();
}