1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008-2009 Sun Microsystems, Inc.
4
* Copyright (C) 2008-2009 Sun Microsystems
6
6
* This program is free software; you can redistribute it and/or modify
7
7
* it under the terms of the GNU General Public License as published by
17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include <drizzled/session.h>
23
#include <drizzled/item/uint.h>
24
#include <drizzled/item/float.h>
25
#include <drizzled/item/string.h>
26
#include <drizzled/optimizer/explain_plan.h>
27
#include <drizzled/optimizer/position.h>
28
#include <drizzled/optimizer/quick_ror_intersect_select.h>
29
#include <drizzled/optimizer/range.h>
30
#include <drizzled/sql_select.h>
31
#include <drizzled/join.h>
32
#include <drizzled/internal/m_string.h>
33
#include <drizzled/select_result.h>
21
#include "drizzled/session.h"
22
#include "drizzled/item/uint.h"
23
#include "drizzled/item/float.h"
24
#include "drizzled/optimizer/explain_plan.h"
25
#include "drizzled/optimizer/position.h"
26
#include "drizzled/optimizer/quick_ror_intersect_select.h"
27
#include "drizzled/optimizer/range.h"
28
#include "drizzled/sql_select.h"
29
#include "drizzled/join.h"
30
#include "drizzled/internal/m_string.h"
40
36
using namespace std;
99
96
for (uint32_t i= 0; i < 7; i++)
100
97
item_list.push_back(item_null);
102
if (join->session->getLex()->describe & DESCRIBE_EXTENDED)
99
if (join->session->lex->describe & DESCRIBE_EXTENDED)
103
100
item_list.push_back(item_null);
105
102
item_list.push_back(new Item_string(message,strlen(message),cs));
160
157
item_list.push_back(item_null);
162
if (join->session->getLex()->describe & DESCRIBE_EXTENDED)
159
if (join->session->lex->describe & DESCRIBE_EXTENDED)
163
160
item_list.push_back(item_null);
165
162
item_list.push_back(item_null);
182
179
JoinTable *tab= join->join_tab + i;
183
180
Table *table= tab->table;
182
char buff1[512], buff2[512], buff3[512];
184
183
char keylen_str_buf[64];
184
String extra(buff, sizeof(buff),cs);
186
185
char table_name_buffer[NAME_LEN];
186
String tmp1(buff1,sizeof(buff1),cs);
187
String tmp2(buff2,sizeof(buff2),cs);
188
String tmp3(buff3,sizeof(buff3),cs);
194
197
item_list.push_back(new Item_uint((uint32_t)
195
198
join->select_lex->select_number));
236
239
if (tab->keys.test(j))
238
241
if (tmp1.length())
240
243
tmp1.append(table->key_info[j].name,
241
strlen(table->key_info[j].name));
244
strlen(table->key_info[j].name),
245
system_charset_info);
245
249
if (tmp1.length())
246
item_list.push_back(new Item_string(tmp1.c_str(),tmp1.length(),cs));
250
item_list.push_back(new Item_string(tmp1.ptr(),tmp1.length(),cs));
248
252
item_list.push_back(item_null);
262
266
for (StoredKey **ref= tab->ref.key_copy; *ref; ref++)
264
268
if (tmp2.length())
266
tmp2.append((*ref)->name(),
267
strlen((*ref)->name()));
270
tmp2.append((*ref)->name(),
271
strlen((*ref)->name()),
272
system_charset_info);
269
item_list.push_back(new Item_string(tmp2.c_str(),tmp2.length(),cs));
274
item_list.push_back(new Item_string(tmp2.ptr(),tmp2.length(),cs));
271
276
else if (tab->type == AM_NEXT)
283
288
else if (tab->select && tab->select->quick)
285
290
tab->select->quick->add_keys_and_lengths(&tmp2, &tmp3);
286
item_list.push_back(new Item_string(tmp2.c_str(),tmp2.length(),cs));
287
item_list.push_back(new Item_string(tmp3.c_str(),tmp3.length(),cs));
291
item_list.push_back(new Item_string(tmp2.ptr(),tmp2.length(),cs));
292
item_list.push_back(new Item_string(tmp3.ptr(),tmp3.length(),cs));
288
293
item_list.push_back(item_null);
298
303
double examined_rows;
299
304
if (tab->select && tab->select->quick)
301
examined_rows= tab->select->quick->records;
306
examined_rows= rows2double(tab->select->quick->records);
303
308
else if (tab->type == AM_NEXT || tab->type == AM_ALL)
305
examined_rows= tab->limit ? tab->limit : tab->table->cursor->records();
310
examined_rows= rows2double(tab->limit ? tab->limit :
311
tab->table->cursor->records());
339
345
else if (tab->packed_info & TAB_INFO_HAVE_VALUE)
341
347
if (tab->packed_info & TAB_INFO_USING_INDEX)
342
extra.append("; Using index");
348
extra.append(STRING_WITH_LEN("; Using index"));
343
349
if (tab->packed_info & TAB_INFO_USING_WHERE)
344
extra.append("; Using where");
350
extra.append(STRING_WITH_LEN("; Using where"));
345
351
if (tab->packed_info & TAB_INFO_FULL_SCAN_ON_NULL)
346
extra.append("; Full scan on NULL key");
348
extra.erase(0, 2); /* Skip initial "; "*/
349
item_list.push_back(new Item_string(extra.c_str(), extra.length(), cs));
352
extra.append(STRING_WITH_LEN("; Full scan on NULL key"));
353
/* Skip initial "; "*/
354
const char *str= extra.ptr();
355
uint32_t len= extra.length();
361
item_list.push_back(new Item_string(str, len, cs));
360
372
quick_type == optimizer::QuickSelectInterface::QS_TYPE_ROR_INTERSECT ||
361
373
quick_type == optimizer::QuickSelectInterface::QS_TYPE_INDEX_MERGE)
363
extra.append("; Using ");
375
extra.append(STRING_WITH_LEN("; Using "));
364
376
tab->select->quick->add_info_string(&extra);
386
398
s << uppercase << hex << tmp.to_ulong();
388
extra.append("; Range checked for each record (index map: 0x");
400
extra.append(STRING_WITH_LEN("; Range checked for each "
401
"record (index map: 0x"));
389
402
extra.append(s.str().c_str());
392
405
else if (tab->select->cond)
394
extra.append("; Using where");
407
extra.append(STRING_WITH_LEN("; Using where"));
399
412
if (quick_type == optimizer::QuickSelectInterface::QS_TYPE_GROUP_MIN_MAX)
400
extra.append("; Using index for group-by");
413
extra.append(STRING_WITH_LEN("; Using index for group-by"));
402
extra.append("; Using index");
415
extra.append(STRING_WITH_LEN("; Using index"));
404
417
if (table->reginfo.not_exists_optimize)
405
extra.append("; Not exists");
418
extra.append(STRING_WITH_LEN("; Not exists"));
407
420
if (need_tmp_table)
409
422
need_tmp_table=0;
410
extra.append("; Using temporary");
423
extra.append(STRING_WITH_LEN("; Using temporary"));
415
extra.append("; Using filesort");
428
extra.append(STRING_WITH_LEN("; Using filesort"));
417
430
if (distinct & test_all_bits(used_tables,session->used_tables))
418
extra.append("; Distinct");
431
extra.append(STRING_WITH_LEN("; Distinct"));
420
433
if (tab->insideout_match_tab)
422
extra.append("; LooseScan");
435
extra.append(STRING_WITH_LEN("; LooseScan"));
425
438
for (uint32_t part= 0; part < tab->ref.key_parts; part++)
427
440
if (tab->ref.cond_guards[part])
429
extra.append("; Full scan on NULL key");
442
extra.append(STRING_WITH_LEN("; Full scan on NULL key"));
434
447
if (i > 0 && tab[-1].next_select == sub_select_cache)
435
extra.append("; Using join buffer");
448
extra.append(STRING_WITH_LEN("; Using join buffer"));
439
item_list.push_back(new Item_string(extra.c_str(), extra.length(), cs));
450
/* Skip initial "; "*/
451
const char *str= extra.ptr();
452
uint32_t len= extra.length();
458
item_list.push_back(new Item_string(str, len, cs));
441
460
// For next iteration
442
461
used_tables|=table->map;
466
485
sl= sl->next_select())
468
487
// drop UNCACHEABLE_EXPLAIN, because it is for internal usage only
469
sl->uncacheable.reset(UNCACHEABLE_EXPLAIN);
470
if (&session->getLex()->select_lex == sl)
488
uint8_t uncacheable= (sl->uncacheable & ~UNCACHEABLE_EXPLAIN);
489
if (&session->lex->select_lex == sl)
472
491
if (sl->first_inner_unit() || sl->next_select())
491
if (sl->uncacheable.test(UNCACHEABLE_DEPENDENT))
510
if (uncacheable & UNCACHEABLE_DEPENDENT)
493
512
sl->type= optimizer::ST_DEPENDENT_SUBQUERY;
497
if (sl->uncacheable.any())
499
518
sl->type= optimizer::ST_UNCACHEABLE_SUBQUERY;
510
if (sl->uncacheable.test(UNCACHEABLE_DEPENDENT))
529
if (uncacheable & UNCACHEABLE_DEPENDENT)
512
531
sl->type= optimizer::ST_DEPENDENT_UNION;
516
if (sl->uncacheable.any())
518
537
sl->type= optimizer::ST_UNCACHEABLE_UNION;
543
session->getLex()->current_select= first;
562
session->lex->current_select= first;
544
563
unit->set_limit(unit->global_parameters);
545
res= select_query(session,
564
res= mysql_select(session,
546
565
&first->ref_pointer_array,
547
566
(TableList*) first->table_list.first,
548
567
first->with_wild,
549
568
first->item_list,
551
570
first->order_list.elements + first->group_list.elements,
552
(Order*) first->order_list.first,
553
(Order*) first->group_list.first,
571
(order_st*) first->order_list.first,
572
(order_st*) first->group_list.first,
555
574
first->options | session->options | SELECT_DESCRIBE,