MySQL 5.6.14 Source Code Document
|
#include <opt_explain_traditional.h>
Public Member Functions | |
virtual bool | is_hierarchical () const |
virtual bool | send_headers (select_result *result) |
virtual bool | begin_context (Explain_context_enum, SELECT_LEX_UNIT *subquery, const Explain_format_flags *flags) |
virtual bool | end_context (Explain_context_enum) |
virtual bool | flush_entry () |
virtual qep_row * | entry () |
Additional Inherited Members | |
Static Public Member Functions inherited from Sql_alloc | |
static void * | operator new (size_t size) throw () |
static void * | operator new[] (size_t size) throw () |
static void * | operator new[] (size_t size, MEM_ROOT *mem_root) throw () |
static void * | operator new (size_t size, MEM_ROOT *mem_root) throw () |
static void | operator delete (void *ptr, size_t size) |
static void | operator delete (void *ptr, MEM_ROOT *mem_root) |
static void | operator delete[] (void *ptr, MEM_ROOT *mem_root) |
static void | operator delete[] (void *ptr, size_t size) |
Public Attributes inherited from Explain_format | |
select_result * | output |
output resulting data there |
Formatter for the traditional EXPLAIN output
Definition at line 26 of file opt_explain_traditional.h.
|
inlinevirtual |
Enter a specified context
context | context type |
subquery | for CTX_WHERE: unit of the subquery |
Implements Explain_format.
Definition at line 36 of file opt_explain_traditional.h.
|
inlinevirtual |
Leave the current context
context | current context type (for validation/debugging) |
Implements Explain_format.
Definition at line 42 of file opt_explain_traditional.h.
|
inlinevirtual |
Get a pointer to the current TABLE/JOIN_TAB property set
Implements Explain_format.
Definition at line 44 of file opt_explain_traditional.h.
|
virtual |
Flush TABLE/JOIN_TAB property set
For traditional EXPLAIN: output a single EXPLAIN row.
Implements Explain_format.
Definition at line 158 of file opt_explain_traditional.cc.
|
inlinevirtual |
A hierarchical text or a plain table
true | Formatter produces hierarchical text |
false | Traditional explain |
Implements Explain_format.
Definition at line 34 of file opt_explain_traditional.h.
|
virtual |
Send EXPLAIN header item(s) to output stream
result | output result set |
false | OK |
true | Error |
Reimplemented from Explain_format.
Definition at line 60 of file opt_explain_traditional.cc.