~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/explain_plan.h

Merge Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
namespace optimizer
31
31
{
32
32
 
 
33
/** select type for EXPLAIN */
 
34
enum select_type
 
35
 
36
  ST_PRIMARY,
 
37
  ST_SIMPLE,
 
38
  ST_DERIVED,
 
39
  ST_DEPENDENT_SUBQUERY,
 
40
  ST_UNCACHEABLE_SUBQUERY,
 
41
  ST_SUBQUERY,
 
42
        ST_DEPENDENT_UNION,
 
43
  ST_UNCACHEABLE_UNION,
 
44
  ST_UNION,
 
45
  ST_UNION_RESULT
 
46
};
 
47
 
33
48
class ExplainPlan
34
49
{
35
50
public: