35
#include "drizzled/item/cache.h"
36
#include "drizzled/item/cmpfunc.h"
37
#include "drizzled/item/copy_string.h"
38
#include "drizzled/item/uint.h"
39
#include "drizzled/cached_item.h"
40
#include "drizzled/sql_base.h"
41
#include "drizzled/sql_select.h" /* include join.h */
42
#include "drizzled/lock.h"
43
#include "drizzled/nested_join.h"
44
#include "drizzled/join.h"
45
#include "drizzled/join_cache.h"
46
#include "drizzled/show.h"
47
#include "drizzled/field/blob.h"
48
#include "drizzled/optimizer/position.h"
49
#include "drizzled/optimizer/sargable_param.h"
50
#include "drizzled/optimizer/key_use.h"
51
#include "drizzled/optimizer/range.h"
52
#include "drizzled/optimizer/sum.h"
53
#include "drizzled/optimizer/explain_plan.h"
54
#include "drizzled/optimizer/access_method_factory.h"
55
#include "drizzled/optimizer/access_method.h"
56
#include "drizzled/records.h"
57
#include "drizzled/probes.h"
58
#include "drizzled/internal/my_bit.h"
59
#include "drizzled/internal/my_sys.h"
60
#include "drizzled/internal/iocache.h"
61
#include "drizzled/plugin/storage_engine.h"
35
#include <drizzled/item/cache.h>
36
#include <drizzled/item/cmpfunc.h>
37
#include <drizzled/item/copy_string.h>
38
#include <drizzled/item/uint.h>
39
#include <drizzled/cached_item.h>
40
#include <drizzled/sql_base.h>
41
#include <drizzled/sql_select.h> /* include join.h */
42
#include <drizzled/lock.h>
43
#include <drizzled/nested_join.h>
44
#include <drizzled/join.h>
45
#include <drizzled/join_cache.h>
46
#include <drizzled/show.h>
47
#include <drizzled/field/blob.h>
48
#include <drizzled/open_tables_state.h>
49
#include <drizzled/optimizer/position.h>
50
#include <drizzled/optimizer/sargable_param.h>
51
#include <drizzled/optimizer/key_use.h>
52
#include <drizzled/optimizer/range.h>
53
#include <drizzled/optimizer/sum.h>
54
#include <drizzled/optimizer/explain_plan.h>
55
#include <drizzled/optimizer/access_method_factory.h>
56
#include <drizzled/optimizer/access_method.h>
57
#include <drizzled/records.h>
58
#include <drizzled/probes.h>
59
#include <drizzled/internal/my_bit.h>
60
#include <drizzled/internal/my_sys.h>
61
#include <drizzled/internal/iocache.h>
62
#include <drizzled/plugin/storage_engine.h>
63
#include <drizzled/session.h>
64
#include <drizzled/select_result.h>
63
65
#include <drizzled/debug.h>
66
#include <drizzled/item/subselect.h>
67
#include <drizzled/my_hash.h>
68
#include <drizzled/sql_lex.h>
69
#include <drizzled/statistics_variables.h>
70
#include <drizzled/system_variables.h>
65
71
#include <algorithm>
67
73
using namespace std;
71
77
extern plugin::StorageEngine *heap_engine;
73
79
/** Declarations of static functions used in this source file. */
99
105
uint32_t prune_level);
100
106
static uint32_t determine_search_depth(Join* join);
101
static bool make_simple_join(Join *join,Table *tmp_table);
107
static void make_simple_join(Join*, Table*);
102
108
static void make_outerjoin_info(Join *join);
103
109
static bool make_join_select(Join *join, optimizer::SqlSelect *select,COND *item);
104
static bool make_join_readinfo(Join *join);
110
static void make_join_readinfo(Join&);
105
111
static void update_depend_map(Join *join);
106
112
static void update_depend_map(Join *join, Order *order);
107
113
static Order *remove_constants(Join *join,Order *first_order,COND *cond, bool change_list, bool *simple_order);
108
static int return_zero_rows(Join *join,
114
static void return_zero_rows(Join *join,
109
115
select_result *res,
110
116
TableList *tables,
111
117
List<Item> &fields,
360
365
/* Check that all tables, fields, conds and order are ok */
362
367
if (!(select_options & OPTION_SETUP_TABLES_DONE) &&
363
setup_tables_and_check_access(session, &select_lex->context, join_list,
364
tables_list, &select_lex->leaf_tables,
368
setup_tables_and_check_access(session, &select_lex->context, join_list, tables_list, &select_lex->leaf_tables, false))
370
373
TableList *table_ptr;
371
for (table_ptr= select_lex->leaf_tables;
373
table_ptr= table_ptr->next_leaf)
374
for (table_ptr= select_lex->leaf_tables; table_ptr; table_ptr= table_ptr->next_leaf)
379
if (setup_wild(session, fields_list, &all_fields, wild_num) ||
380
select_lex->setup_ref_array(session, og_num) ||
381
setup_fields(session, (*rref_pointer_array), fields_list, MARK_COLUMNS_READ,
383
setup_without_group(session, (*rref_pointer_array), tables_list,
384
select_lex->leaf_tables, fields_list,
385
all_fields, &conds, order, group_list,
386
&hidden_group_fields))
380
if (setup_wild(session, fields_list, &all_fields, wild_num))
382
select_lex->setup_ref_array(session, og_num);
383
if (setup_fields(session, *rref_pointer_array, fields_list, MARK_COLUMNS_READ, &all_fields, 1) ||
384
setup_without_group(session, *rref_pointer_array, tables_list, select_lex->leaf_tables, fields_list,
385
all_fields, &conds, order, group_list, &hidden_group_fields))
389
388
ref_pointer_array= *rref_pointer_array;
393
nesting_map save_allow_sum_func= session->lex->allow_sum_func;
392
nesting_map save_allow_sum_func= session->lex().allow_sum_func;
394
393
session->setWhere("having clause");
395
session->lex->allow_sum_func|= 1 << select_lex_arg->nest_level;
394
session->lex().allow_sum_func|= 1 << select_lex_arg->nest_level;
396
395
select_lex->having_fix_field= 1;
397
396
bool having_fix_rc= (!having->fixed &&
398
397
(having->fix_fields(session, &having) ||
1348
1342
@retval 0 success.
1349
1343
@retval 1 error occurred.
1351
bool Join::init_save_join_tab()
1345
void Join::init_save_join_tab()
1353
if (!(tmp_join= (Join*)session->getMemRoot()->allocate(sizeof(Join))))
1347
tmp_join= (Join*)session->mem.alloc(sizeof(Join));
1356
1349
error= 0; // Ensure that tmp_join.error= 0
1362
bool Join::save_join_tab()
1353
void Join::save_join_tab()
1364
1355
if (! join_tab_save && select_lex->master_unit()->uncacheable.any())
1366
if (!(join_tab_save= (JoinTable*)session->getMemRoot()->duplicate((unsigned char*) join_tab,
1367
sizeof(JoinTable) * tables)))
1357
join_tab_save= (JoinTable*)session->mem.memdup(join_tab, sizeof(JoinTable) * tables);
1526
1509
curr_join->all_fields= *curr_all_fields;
1529
items1= items0 + all_fields.elements;
1512
items1= items0 + all_fields.size();
1530
1513
if (sort_and_group || curr_tmp_table->group)
1532
1515
if (change_to_use_tmp_fields(session, items1,
1533
1516
tmp_fields_list1, tmp_all_fields1,
1534
fields_list.elements, all_fields))
1517
fields_list.size(), all_fields))
1539
1522
if (change_refs_to_tmp_fields(session, items1,
1540
1523
tmp_fields_list1, tmp_all_fields1,
1541
fields_list.elements, all_fields))
1524
fields_list.size(), all_fields))
1544
1527
curr_join->tmp_all_fields1= tmp_all_fields1;
1582
1565
{ /* Must copy to another table */
1583
1566
/* Free first data from old join */
1584
1567
curr_join->join_free();
1585
if (make_simple_join(curr_join, curr_tmp_table))
1568
make_simple_join(curr_join, curr_tmp_table);
1587
1569
calc_group_buffer(curr_join, group_list);
1588
1570
count_field_types(select_lex, &curr_join->tmp_table_param,
1589
1571
curr_join->tmp_all_fields1,
1590
1572
curr_join->select_distinct && !curr_join->group_list);
1591
curr_join->tmp_table_param.hidden_field_count= curr_join->tmp_all_fields1.elements
1592
- curr_join->tmp_fields_list1.elements;
1573
curr_join->tmp_table_param.hidden_field_count= curr_join->tmp_all_fields1.size()
1574
- curr_join->tmp_fields_list1.size();
1594
1576
if (exec_tmp_table2)
1626
1608
if (curr_join->group_list)
1628
1610
session->set_proc_info("Creating sort index");
1629
if (curr_join->join_tab == join_tab && save_join_tab())
1633
if (create_sort_index(session, curr_join, curr_join->group_list,
1634
HA_POS_ERROR, HA_POS_ERROR, false) ||
1611
if (curr_join->join_tab == join_tab)
1613
if (create_sort_index(session, curr_join, curr_join->group_list, HA_POS_ERROR, HA_POS_ERROR, false) ||
1635
1614
make_group_fields(this, curr_join))
1675
1654
// No sum funcs anymore
1678
items2= items1 + all_fields.elements;
1657
items2= items1 + all_fields.size();
1679
1658
if (change_to_use_tmp_fields(session, items2,
1680
1659
tmp_fields_list2, tmp_all_fields2,
1681
fields_list.elements, tmp_all_fields1))
1660
fields_list.size(), tmp_all_fields1))
1683
1662
curr_join->tmp_fields_list2= tmp_fields_list2;
1684
1663
curr_join->tmp_all_fields2= tmp_all_fields2;
1725
1703
init_items_ref_array();
1726
items3= ref_pointer_array + (all_fields.elements*4);
1704
items3= ref_pointer_array + (all_fields.size() * 4);
1727
1705
setup_copy_fields(session, &curr_join->tmp_table_param,
1728
1706
items3, tmp_fields_list3, tmp_all_fields3,
1729
curr_fields_list->elements, *curr_all_fields);
1707
curr_fields_list->size(), *curr_all_fields);
1730
1708
tmp_table_param.save_copy_funcs= curr_join->tmp_table_param.copy_funcs;
1731
1709
tmp_table_param.save_copy_field= curr_join->tmp_table_param.copy_field;
1732
1710
tmp_table_param.save_copy_field_end= curr_join->tmp_table_param.copy_field_end;
1765
1743
if (sort_table_cond)
1767
1745
if (!curr_table->select)
1768
if (!(curr_table->select= new optimizer::SqlSelect()))
1746
curr_table->select= new optimizer::SqlSelect;
1770
1747
if (!curr_table->select->cond)
1771
1748
curr_table->select->cond= sort_table_cond;
1772
1749
else // This should never happen
1774
if (!(curr_table->select->cond=
1775
new Item_cond_and(curr_table->select->cond,
1751
curr_table->select->cond= new Item_cond_and(curr_table->select->cond, sort_table_cond);
1779
1753
Item_cond_and do not need fix_fields for execution, its parameters
1780
1754
are fixed or do not need fix_fields, too
2033
2005
We are not using tables anymore
2034
2006
Unlock all tables. We may be in an INSERT .... SELECT statement.
2036
if (can_unlock && lock && session->lock &&
2008
if (can_unlock && lock && session->open_tables.lock &&
2037
2009
!(select_options & SELECT_NO_UNLOCK) &&
2038
2010
!select_lex->subquery_in_having &&
2039
(select_lex == (session->lex->unit.fake_select_lex ?
2040
session->lex->unit.fake_select_lex : &session->lex->select_lex)))
2011
(select_lex == (session->lex().unit.fake_select_lex ?
2012
session->lex().unit.fake_select_lex : &session->lex().select_lex)))
2043
2015
TODO: unlock tables even if the join isn't top level select in the
2258
2229
tmp_table_param.group_parts= send_group_parts;
2260
rollup.setNullItems((Item_null_result**) session->getMemRoot()->allocate((sizeof(Item*) +
2262
sizeof(List<Item>) +
2263
ref_pointer_array_size)
2264
* send_group_parts ));
2265
if (! rollup.getNullItems())
2231
rollup.setNullItems((Item_null_result**) session->mem.alloc((sizeof(Item*) + sizeof(Item**) + sizeof(List<Item>) + ref_pointer_array_size) * send_group_parts));
2270
2232
rollup.setFields((List<Item>*) (rollup.getNullItems() + send_group_parts));
2271
2233
rollup.setRefPointerArrays((Item***) (rollup.getFields() + send_group_parts));
2272
ref_array= (Item**) (rollup.getRefPointerArrays()+send_group_parts);
2234
Item** ref_array= (Item**) (rollup.getRefPointerArrays()+send_group_parts);
2275
2237
Prepare space for field list for the different levels
2278
2240
for (uint32_t i= 0 ; i < send_group_parts ; i++)
2280
rollup.getNullItems()[i]= new (session->mem_root) Item_null_result();
2242
rollup.getNullItems()[i]= new (session->mem) Item_null_result();
2281
2243
List<Item> *rollup_fields= &rollup.getFields()[i];
2282
rollup_fields->empty();
2244
rollup_fields->clear();
2283
2245
rollup.getRefPointerArrays()[i]= ref_array;
2284
ref_array+= all_fields.elements;
2246
ref_array+= all_fields.size();
2287
2249
for (uint32_t i= 0 ; i < send_group_parts; i++)
2289
for (uint32_t j= 0 ; j < fields_list.elements ; j++)
2251
for (uint32_t j= 0 ; j < fields_list.size() ; j++)
2291
2253
rollup.getFields()[i].push_back(rollup.getNullItems()[i]);
2295
List_iterator<Item> it(all_fields);
2297
while ((item= it++))
2257
List<Item>::iterator it(all_fields.begin());
2258
while (Item* item= it++)
2299
2260
Order *group_tmp;
2300
2261
bool found_in_group= 0;
2545
2502
ref_pointer_array_size);
2546
2503
if ((!having || having->val_int()))
2550
List_iterator_fast<Item> it(rollup.getFields()[i]);
2551
while ((item= it++))
2505
List<Item>::iterator it(rollup.getFields()[i].begin());
2506
while (Item* item= it++)
2553
2508
if (item->type() == Item::NULL_ITEM && item->is_result_field())
2554
2509
item->save_in_result_field(1);
2556
2511
copy_sum_funcs(sum_funcs_end[i+1], sum_funcs_end[i]);
2557
if ((write_error= table_arg->cursor->insertRecord(table_arg->getInsertRecord())))
2512
if (table_arg->cursor->insertRecord(table_arg->getInsertRecord()))
2559
2514
my_error(ER_USE_SQL_BIG_RESULT, MYF(0));
4552
4495
return search_depth;
4555
static bool make_simple_join(Join *join,Table *tmp_table)
4498
static void make_simple_join(Join *join,Table *tmp_table)
4558
JoinTable *join_tab;
4561
4501
Reuse Table * and JoinTable if already allocated by a previous call
4562
4502
to this function through Join::exec (may happen for sub-queries).
4564
4504
if (!join->table_reexec)
4566
if (!(join->table_reexec= (Table**) join->session->getMemRoot()->allocate(sizeof(Table*))))
4506
join->table_reexec= new (join->session->mem) Table*;
4568
4507
if (join->tmp_join)
4569
4508
join->tmp_join->table_reexec= join->table_reexec;
4571
4510
if (!join->join_tab_reexec)
4573
if (!(join->join_tab_reexec=
4574
(JoinTable*) join->session->getMemRoot()->allocate(sizeof(JoinTable))))
4576
new (join->join_tab_reexec) JoinTable();
4512
join->join_tab_reexec= new (join->session->mem) JoinTable;
4577
4513
if (join->tmp_join)
4578
4514
join->tmp_join->join_tab_reexec= join->join_tab_reexec;
4580
tableptr= join->table_reexec;
4581
join_tab= join->join_tab_reexec;
4516
Table** tableptr= join->table_reexec;
4517
JoinTable* join_tab= join->join_tab_reexec;
4583
4519
join->join_tab=join_tab;
4584
4520
join->table=tableptr; tableptr[0]=tmp_table;
4723
4657
if (join->tables > 1)
4724
4658
cond->update_used_tables(); // Tablenr may have changed
4725
4659
if (join->const_tables == join->tables &&
4726
session->lex->current_select->master_unit() ==
4727
&session->lex->unit) // not upper level SELECT
4660
session->lex().current_select->master_unit() ==
4661
&session->lex().unit) // not upper level SELECT
4728
4662
join->const_table_map|=RAND_TABLE_BIT;
4729
4663
{ // Check const tables
4730
4664
COND *const_cond=
4731
4665
make_cond_for_table(cond,
4732
4666
join->const_table_map,
4734
4668
for (JoinTable *tab= join->join_tab+join->const_tables;
4735
4669
tab < join->join_tab+join->tables ; tab++)
5113
5042
if (tab->insideout_match_tab)
5115
if (! (tab->insideout_buf= (unsigned char*) join->session->getMemRoot()->allocate(tab->table->key_info
5121
optimizer::AccessMethodFactory &factory= optimizer::AccessMethodFactory::singleton();
5122
boost::shared_ptr<optimizer::AccessMethod> access_method(factory.createAccessMethod(tab->type));
5124
if (! access_method)
5128
* Is abort() the correct thing to call here? I call this here because it was what was called in
5129
* the default case for the switch statement that used to be here.
5134
access_method->getStats(table, tab);
5044
tab->insideout_buf= join.session->mem.alloc(tab->table->key_info[tab->index].key_length);
5047
optimizer::AccessMethodFactory::create(tab->type)->getStats(*table, *tab);
5137
join->join_tab[join->tables-1].next_select= NULL; /* Set by do_select */
5050
join.join_tab[join.tables-1].next_select= NULL; /* Set by do_select */
5142
5053
/** Update the dependency map for the tables. */
5261
5172
return(first_order);
5264
static int return_zero_rows(Join *join,
5265
select_result *result,
5269
uint64_t select_options,
5175
static void return_zero_rows(Join *join, select_result *result, TableList *tables, List<Item> &fields, bool send_row, uint64_t select_options, const char *info, Item *having)
5273
5177
if (select_options & SELECT_DESCRIBE)
5275
optimizer::ExplainPlan planner(join,
5179
optimizer::ExplainPlan planner(join, false, false, false, info);
5280
5180
planner.printPlan();
5284
5184
join->join_free();
5290
5190
if (having && having->val_int() == 0)
5293
if (! (result->send_fields(fields)))
5193
result->send_fields(fields);
5297
List_iterator_fast<Item> it(fields);
5299
while ((item= it++))
5300
item->no_rows_in_result();
5301
result->send_data(fields);
5303
result->send_eof(); // Should be safe
5196
List<Item>::iterator it(fields.begin());
5197
while (Item* item= it++)
5198
item->no_rows_in_result();
5199
result->send_data(fields);
5201
result->send_eof(); // Should be safe
5305
5202
/* Update results for FOUND_ROWS */
5306
5203
join->session->limit_found_rows= join->session->examined_row_count= 0;
5430
5326
static COND *simplify_joins(Join *join, List<TableList> *join_list, COND *conds, bool top)
5433
5328
NestedJoin *nested_join;
5434
5329
TableList *prev_table= 0;
5435
List_iterator<TableList> li(*join_list);
5330
List<TableList>::iterator li(join_list->begin());
5438
5333
Try to simplify join operations from join_list.
5439
5334
The most outer join operation is checked for conversion first.
5441
while ((table= li++))
5336
while (TableList* table= li++)
5443
5338
table_map used_tables;
5444
5339
table_map not_null_tables= (table_map) 0;
5568
5463
Flatten nested joins that can be flattened.
5569
5464
no ON expression and not a semi-join => can be flattened.
5572
while ((table= li++))
5466
li= join_list->begin();
5467
while (TableList* table= li++)
5574
5469
nested_join= table->getNestedJoin();
5575
5470
if (nested_join && !table->on_expr)
5578
List_iterator<TableList> it(nested_join->join_list);
5472
List<TableList>::iterator it(nested_join->join_list.begin());
5473
while (TableList* tbl= it++)
5581
5475
tbl->setEmbedding(table->getEmbedding());
5582
5476
tbl->setJoinList(table->getJoinList());
5590
5484
static int remove_duplicates(Join *join, Table *entry,List<Item> &fields, Item *having)
5593
uint32_t reclength,offset;
5594
uint32_t field_count;
5595
Session *session= join->session;
5597
5486
entry->reginfo.lock_type=TL_WRITE;
5599
5488
/* Calculate how many saved fields there is in list */
5601
List_iterator<Item> it(fields);
5489
uint32_t field_count= 0;
5490
List<Item>::iterator it(fields.begin());
5491
while (Item* item=it++)
5605
5493
if (item->get_tmp_table_field() && ! item->const_item())
5609
5497
if (!field_count && !(join->select_options & OPTION_FOUND_ROWS) && !having)
5610
5498
{ // only const items with no OPTION_FOUND_ROWS
5611
5499
join->unit->select_limit_cnt= 1; // Only send first row
5614
5502
Field **first_field=entry->getFields() + entry->getShare()->sizeFields() - field_count;
5615
offset= (field_count ?
5616
entry->getField(entry->getShare()->sizeFields() - field_count)->offset(entry->getInsertRecord()) : 0);
5617
reclength= entry->getShare()->getRecordLength() - offset;
5503
uint32_t offset= field_count ? entry->getField(entry->getShare()->sizeFields() - field_count)->offset(entry->getInsertRecord()) : 0;
5504
uint32_t reclength= entry->getShare()->getRecordLength() - offset;
5619
5506
entry->free_io_cache(); // Safety
5620
5507
entry->cursor->info(HA_STATUS_VARIABLE);
5621
5509
if (entry->getShare()->db_type() == heap_engine ||
5622
5510
(!entry->getShare()->blob_fields &&
5623
((ALIGN_SIZE(reclength) + HASH_OVERHEAD) * entry->cursor->stats.records <
5624
session->variables.sortbuff_size)))
5511
((ALIGN_SIZE(reclength) + HASH_OVERHEAD) * entry->cursor->stats.records < join->session->variables.sortbuff_size)))
5626
error= remove_dup_with_hash_index(join->session, entry,
5627
field_count, first_field,
5513
error= remove_dup_with_hash_index(join->session, entry, field_count, first_field, reclength, having);
5632
5517
error= remove_dup_with_compare(join->session, entry, first_field, offset, having);
5635
5519
free_blobs(first_field);
5652
5535
bool *hidden_group_fields)
5655
nesting_map save_allow_sum_func=session->lex->allow_sum_func ;
5538
nesting_map save_allow_sum_func=session->lex().allow_sum_func;
5657
session->lex->allow_sum_func&= ~(1 << session->lex->current_select->nest_level);
5540
session->lex().allow_sum_func&= ~(1 << session->lex().current_select->nest_level);
5658
5541
res= session->setup_conds(tables, conds);
5660
session->lex->allow_sum_func|= 1 << session->lex->current_select->nest_level;
5661
res= res || setup_order(session, ref_pointer_array, tables, fields, all_fields,
5663
session->lex->allow_sum_func&= ~(1 << session->lex->current_select->nest_level);
5664
res= res || setup_group(session, ref_pointer_array, tables, fields, all_fields,
5665
group, hidden_group_fields);
5666
session->lex->allow_sum_func= save_allow_sum_func;
5543
session->lex().allow_sum_func|= 1 << session->lex().current_select->nest_level;
5544
res= res || setup_order(session, ref_pointer_array, tables, fields, all_fields, order);
5545
session->lex().allow_sum_func&= ~(1 << session->lex().current_select->nest_level);
5546
res= res || setup_group(session, ref_pointer_array, tables, fields, all_fields, group, hidden_group_fields);
5547
session->lex().allow_sum_func= save_allow_sum_func;
5702
5583
optimizer::Position *partial_pos;
5704
5585
table_count= join->tables;
5705
stat= (JoinTable*) join->session->calloc(sizeof(JoinTable)*table_count);
5706
stat_ref= (JoinTable**) join->session->getMemRoot()->allocate(sizeof(JoinTable*)*MAX_TABLES);
5707
table_vector= (Table**) join->session->getMemRoot()->allocate(sizeof(Table*)*(table_count*2));
5708
if (! stat || ! stat_ref || ! table_vector)
5586
stat= (JoinTable*) join->session->mem.calloc(sizeof(JoinTable)*table_count);
5587
stat_ref= new (join->session->mem) JoinTable*[MAX_TABLES];
5588
table_vector= new (join->session->mem) Table*[2 * table_count];
5711
5590
join->best_ref=stat_vector;
5736
5615
table->quick_keys.reset();
5737
5616
table->reginfo.join_tab=s;
5738
5617
table->reginfo.not_exists_optimize=0;
5739
memset(table->const_key_parts, 0,
5740
sizeof(key_part_map)*table->getShare()->sizeKeys());
5618
memset(table->const_key_parts, 0, sizeof(key_part_map)*table->getShare()->sizeKeys());
5741
5619
all_table_map|= table->map;
5743
5621
s->info=0; // For describe
5838
5716
if (conds || outer_join)
5839
if (update_ref_and_keys(join->session, keyuse_array, stat, join->tables,
5840
conds, join->cond_equal,
5841
~outer_join, join->select_lex, sargables))
5717
update_ref_and_keys(join->session, keyuse_array, stat, join->tables, conds, join->cond_equal, ~outer_join, join->select_lex, sargables);
5844
5719
/* Read tables with 0 or 1 rows (system tables) */
5845
5720
join->const_table_map= 0;
6005
5880
if (const_count && ! sargables.empty())
6007
vector<optimizer::SargableParam>::iterator iter= sargables.begin();
6008
while (iter != sargables.end())
5882
BOOST_FOREACH(vector<optimizer::SargableParam>::reference iter, sargables)
6010
Field *field= (*iter).getField();
6011
JoinTable *join_tab= field->getTable()->reginfo.join_tab;
6012
key_map possible_keys= field->key_start;
6013
possible_keys&= field->getTable()->keys_in_use_for_query;
5884
Field& field= *iter.getField();
5885
JoinTable *join_tab= field.getTable()->reginfo.join_tab;
5886
key_map possible_keys= field.key_start & field.getTable()->keys_in_use_for_query;
6014
5887
bool is_const= true;
6015
for (uint32_t j= 0; j < (*iter).getNumValues(); j++)
6016
is_const&= (*iter).isConstItem(j);
5888
for (uint32_t j= 0; j < iter.getNumValues(); j++)
5889
is_const&= iter.isConstItem(j);
6018
5891
join_tab[0].const_keys|= possible_keys;
6337
6202
cond->add(new Item_func_equal(new Item_field(field), value));
6339
6204
if (session->is_fatal_error)
6342
6207
if (!cond->fixed)
6343
6208
cond->fix_fields(session, (Item**)&cond);
6344
6210
if (join_tab->select)
6346
error=(int) cond->add(join_tab->select->cond);
6212
cond->add(join_tab->select->cond);
6347
6213
join_tab->select_cond=join_tab->select->cond=cond;
6349
else if ((join_tab->select= optimizer::make_select(join_tab->table, 0, 0, cond, 0,
6215
else if ((join_tab->select= optimizer::make_select(join_tab->table, 0, 0, cond, 0, &error)))
6351
6216
join_tab->select_cond=cond;
6353
return(error ? true : false);
6356
6221
static void free_blobs(Field **ptr)